-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1017 Bytes
/
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
{
"name": "workspace-root",
"version": "0.11.2",
"private": true,
"description": "Workspace root for embroider-toolbox",
"repository": {
"type": "git",
"url": "https://github.com/ijlee2/embroider-toolbox.git"
},
"license": "MIT",
"author": "Isaac J. Lee",
"type": "module",
"scripts": {
"build": "pnpm --filter './packages/**' build",
"lint": "pnpm --filter '*' lint",
"lint:fix": "pnpm --filter '*' lint:fix",
"prepare": "pnpm build",
"release:changelog": "changeset version; update-workspace-root-version",
"release:publish": "pnpm build && changeset publish",
"test": "pnpm --filter '*' test"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@changesets/get-github-info": "^0.6.0",
"update-workspace-root-version": "^1.0.1"
},
"packageManager": "[email protected]",
"engines": {
"node": "18.* || >= 20",
"pnpm": ">= 9"
},
"pnpm": {
"overrides": {
"[email protected]>tsconfig-paths": "^4.2.0"
}
}
}