-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
53 lines (53 loc) · 1.37 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
{
"version": "8.2.0",
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:ember-cli/ember-page-title.git"
},
"scripts": {
"build": "pnpm --filter 'ember-page-title' build",
"lint": "pnpm --filter '*' lint",
"lint:fix": "pnpm --filter '*' lint:fix",
"prepare": "pnpm build",
"test": "pnpm --filter '*' test"
},
"devDependencies": {
"release-plan": "^0.6.0"
},
"volta": {
"node": "20.10.0",
"pnpm": "8.10.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
},
"peerDependencyRules": {
"ignoreMissing": [
"rsvp",
"webpack",
"@babel/core",
"ember-template-imports",
"@glimmer/component"
],
"allowAny": [
"typescript",
"ember-source"
]
},
"overrides": {
"@glimmer/manager": ">= 0.84.3",
"@glimmer/validator": ">= 0.84.3"
},
"notes": {
"overrides": {
"_": "these overrides only affect dev and not the published package",
"@glimmer/*": "Glimmer is still pre 1.0, and every minor in pre-1.0 SemVer is a breaking chaneg. So because some dependencies (like 0.44.0 of Glimmer -- this is not compatible with current Glimmer (>= 0.80))"
}
}
}
}