-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
102 lines (102 loc) · 2.79 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "ember-primitives-root",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:universal-ember/ember-primitives.git"
},
"license": "MIT",
"author": "",
"scripts": {
"_start:docs": "pnpm --filter docs-app start",
"_start:package": "pnpm --filter 'ember-primitives' start --no-watch.clearScreen",
"_start:tests": "pnpm --filter test-app start",
"build": "turbo run build --output-logs errors-only",
"lint": "turbo run _:lint --output-logs errors-only",
"lint:fix": "turbo run _:lint:fix --output-logs errors-only",
"start": "pnpm build; concurrently 'npm:_start:*' --prefix ' ' --restart-after 5000 --restart-tries -1",
"test": "turbo run test --output-logs errors-only"
},
"devDependencies": {
"@glint/core": "^1.5.0",
"@nullvoxpopuli/dev": "workspace:*",
"concurrently": "^9.1.0",
"ember-primitives": "workspace:^",
"prettier": "^3.2.5",
"prettier-plugin-ember-template-tag": "^2.0.4",
"release-plan": "^0.9.0",
"turbo": "^2.2.3",
"typescript": "^5.4.5"
},
"engines": {
"node": ">= 20.*",
"npm": "use pnpm",
"yarn": "use pnpm"
},
"packageManager": "[email protected]",
"volta": {
"node": "22.12.0",
"pnpm": "9.15.0"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"typescript",
"ember-source",
"@glimmer/compiler",
"@glimmer/syntax"
],
"ignoreMissing": [
"webpack",
"rsvp"
]
},
"overrides": {
"@glimer/component": "^2.0.0",
"@glint/template": "^1.5.0",
"ember-primitives": "workspace:^",
"ember-cli-babel": "^8.2.0",
"ember-element-helper": ">= 0.8.6",
"ember-source": "^5.12.0",
"tracked-toolbox": "^2.0.0",
"webpack": "^5.95.0"
},
"packageExtensions": {
"@embroider/util": {},
"@glimmer/component": {},
"@glint/template": {},
"ember-async-data": {},
"ember-cached-decorator-polyfill": {},
"ember-element-helper": {},
"ember-functions-as-helper-polyfill": {},
"ember-mobile-menu": {
"peerDependencies": {
"@glimmer/component": "^2.0.0"
}
},
"ember-modify-based-class-resource": {
"peerDependencies": {
"@glimmer/component": "^2.0.0"
}
},
"ember-qunit": {
"peerDependencies": {
"@ember/test-helpers": "^2.7.0 || >= 3.0.0"
}
},
"ember-source": {
"peerDependencies": {
"@glimmer/component": "^2.0.0"
}
},
"ember-repl": {},
"ember-resources": {},
"tracked-toolbox": {}
},
"patchedDependencies": {
"ember-mobile-menu": "patches/ember-mobile-menu.patch",
"ember-source": "patches/ember-source.patch"
}
}
}