forked from bscotch/stitch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.84 KB
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
{
"name": "@local/stitch-monorepo",
"license": "SEE LICENSE IN LICENSE.md",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"bump": "treb version && node scripts/changelogs.mjs && git add . && git commit -m \"chore: updated changelogs\" && treb publish",
"build:all": "pnpm run -r --if-present build",
"test:all": "pnpm run -r --if-present test",
"clean:artifacts": "node ./scripts/nuke-builds.mjs",
"clean:deps": "node ./scripts/nuke-deps.mjs",
"fix:deps": "syncpack fix-mismatches",
"watch": "pnpm run -r --if-present --parallel --stream watch",
"setup:pnpm": "corepack prepare $npm_package_packageManager --activate"
},
"dependencies": {
"@bscotch/pathy": "^2.12.1",
"@bscotch/trebuchet": "2.9.5",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "~8.52.0",
"@typescript-eslint/parser": "~8.52.0",
"@typescript-eslint/utils": "^8.52.0",
"del": "8.0.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"mocha": "^11.7.5",
"prettier": "^3.7.4",
"syncpack": "^13.0.4",
"zx": "^8.8.5"
},
"syncpack": {
"workspace": false,
"source": [
"package.json",
"packages/*/package.json"
]
},
"trebuchet": {
"npmScope": "@bscotch",
"vscodeWorkspaceConfigPath": false
},
"packageManager": "pnpm@10.27.0+sha512.72d699da16b1179c14ba9e64dc71c9a40988cbdc65c264cb0e489db7de917f20dcf4d64d8723625f2969ba52d4b7e2a1170682d9ac2a5dcaeaab732b7e16f04a",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@bscotch/workspaces": "0.3.0",
"typescript": "5.9.3"
},
"pnpm": {
"overrides": {
"zx": "7.2.3"
},
"onlyBuiltDependencies": [
"@vscode/vsce-sign",
"esbuild",
"keytar",
"sharp"
]
}
}