-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.49 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "savescum-monorepo",
"private": true,
"keywords": ["multi-root ready"],
"license": "MIT",
"type": "module",
"scripts": {
"============= WORKSPACE =============": "",
"preinstall": "npx only-allow pnpm",
"reinstall": "pnpm run clean:workspace && pnpm install",
"list": "pnpm recursive list",
"list:workspaces": "pnpm m ls --depth -1 --porcelain",
"changelog": "node ./scripts/changelogs.js",
"prepublishOnly": "pnpm build && node ./scripts/prepublishOnly.js",
"============= STYLE =================": "",
"style:check": "stylelint \"./packages/web/**/*.scss\" -f verbose --color",
"style": "stylelint \"./packages/web/**/*.scss\" --fix -f verbose —color",
"lint": "biome lint --write .",
"fmt": "biome format . --write",
"============= CLEAN =================": "",
"clean:workspace": "node ./scripts/cleanWorkspace.js",
"clean": "pnpm --stream -r clean",
"clean:docs": "pnpm --filter @savescum/docs clean",
"clean:cli": "pnpm --filter savescum clean",
"clean:web": "pnpm --filter @savescum/web clean",
"============= DEV ===================": "",
"dev": "pnpm \"--filter=./packages/*\" \"--filter=!docs\" --parallel -r dev",
"dev:docs": "pnpm --filter @savescum/docs dev",
"dev:cli": "pnpm --filter savescum dev",
"dev:web": "pnpm --filter @savescum/web dev",
"============= BUILD =================": "",
"build": "pnpm \"--filter=./packages/*\" \"--filter=!docs\" -r build",
"build:docs": "pnpm --filter @savescum/docs build",
"build:cli": "pnpm --filter savescum build",
"build:web": "pnpm --filter @savescum/web build",
"============= MISC ==================": "",
"test": "pnpm --stream -r test run",
"test:cli": "pnpm --filter savescum test",
"test:web": "pnpm --filter @savescum/web test",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@bscotch/workspaces": "^0.3.0",
"@types/mock-fs": "^4.13.4",
"husky": "^9.1.7",
"mock-fs": "^5.4.1",
"nano-staged": "^0.8.0",
"stylelint": "^16.12.0",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "5.7.2"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.15.0"
},
"nano-staged": {
"*.ts": "biome lint --write .",
"*": "biome format . --write",
"*.scss": "stylelint \"./packages/web/**/*.scss\" --fix"
},
"packageManager": "[email protected]"
}