-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.46 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
{
"private": true,
"repository": "https://github.com/universal-ember/reactiveweb",
"license": "MIT",
"author": "NullVoxPopuli",
"scripts": {
"build": "pnpm --filter reactiveweb build",
"build:docs": "pnpm --filter docs docs:collect",
"lint": "pnpm --filter '*' lint",
"lint:fix": "pnpm --filter '*' lint:fix",
"prepare": "pnpm build && pnpm sync",
"start": "concurrently 'npm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"start:addon": "pnpm --filter reactiveweb start --no-watch.clearScreen",
"start:test-app": "pnpm --filter test-app start",
"sync": "pnpm --filter test-app _syncPnpm",
"test": "pnpm --filter '*' test",
"test:ember": "pnpm --filter '*' test:ember"
},
"devDependencies": {
"@glint/ember-tsc": "^1.0.8",
"@glint/template": "^1.7.3",
"@glint/tsserver-plugin": "^2.0.8",
"concurrently": "^9.0.1",
"prettier": "^3.0.3",
"prettier-plugin-ember-template-tag": "^2.0.0",
"release-plan": "^0.16.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 22.11.0"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"typescript",
"ember-source",
"ember-async-data"
],
"ignoreMissing": [
"webpack",
"rsvp"
]
},
"overrides": {
"@glimmer/validator": "^0.92.0",
"@glint/ember-tsc": "^1.0.8",
"@glint/template": "^1.7.3",
"@glint/tsserver-plugin": "^2.0.8"
}
}
}