-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.53 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
{
"name": "workspace-root",
"version": "2.0.16",
"private": true,
"description": "Workspace root for embroider-css-modules",
"repository": {
"type": "git",
"url": "https://github.com/ijlee2/embroider-css-modules.git"
},
"license": "MIT",
"author": "Isaac J. Lee",
"type": "module",
"scripts": {
"build": "concurrently 'pnpm:build:*'",
"build:embroider-css-modules": "pnpm --filter embroider-css-modules build",
"build:my-app": "pnpm --filter my-app build",
"build:my-v2-addon": "pnpm --filter my-v2-addon build",
"lint": "pnpm --filter '*' lint",
"lint:fix": "pnpm --filter '*' lint:fix",
"prepare": "pnpm --filter './packages/**' --filter my-v2-addon build",
"release:changelog": "changeset version; update-workspace-root-version",
"release:publish": "pnpm build && changeset publish",
"start": "concurrently 'pnpm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"start:embroider-css-modules": "pnpm --filter embroider-css-modules start",
"start:my-app": "pnpm --filter my-app start",
"start:my-v2-addon": "pnpm --filter my-v2-addon start",
"test": "pnpm --filter '*' test"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@changesets/get-github-info": "^0.6.0",
"concurrently": "^8.2.2",
"update-workspace-root-version": "^0.3.1"
},
"packageManager": "[email protected]",
"engines": {
"node": "18.* || >= 20",
"pnpm": ">= 9"
},
"pnpm": {
"overrides": {
"[email protected]>tsconfig-paths": "^4.2.0"
}
}
}