-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"private": true,
"repository": "https://github.com/tracked-tools/ember-async-data",
"license": "MIT",
"author": {
"name": "Chris Krycho",
"email": "hello@chriskrycho.com",
"url": "https://v5.chriskrycho.com/"
},
"workspaces": [
"ember-async-data",
"test-app"
],
"scripts": {
"build": "pnpm run --filter=ember-async-data build",
"format": "pnpm run --filter=\"*\" format",
"lint": "pnpm run --filter=\"*\" lint",
"lint:fix": "pnpm run --filter=\"*\" lint:fix",
"prepare": "pnpm run build",
"start": "concurrently 'pnpm:start:*' --restart-after 5000 --prefixColors auto",
"start:addon": "pnpm run --filter=ember-async-data start",
"start:test-app": "pnpm run --filter=test-app start",
"test": "pnpm run --filter=test-app test",
"test:ember": "pnpm --filter=test-app test:ember"
},
"devDependencies": {
"@glint/core": "^1.2.1",
"concurrently": "^9.1.2",
"prettier-plugin-ember-template-tag": "^2.0.2",
"release-plan": "^0.16.0"
},
"packageManager": "pnpm@10.6.3",
"volta": {
"node": "18.20.7",
"pnpm": "10.6.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}