-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.57 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
{
"private": true,
"repository": "https://github.com/NullVoxPopuli/ember-statechart-component",
"license": "MIT",
"author": "NullVoxPopuli",
"workspaces": [
"ember-statechart-component",
"testing/*"
],
"scripts": {
"build": "pnpm --filter ember-statechart-component build",
"prepare": "pnpm build",
"lint": "pnpm run --filter '*' lint",
"lint:fix": "pnpm run --filter '*' lint:fix"
},
"devDependencies": {
"@babel/core": "7.25.7",
"@glint/core": "1.4.1-unstable.b29a807",
"@glint/environment-ember-loose": "1.4.1-unstable.b29a807",
"@glint/environment-ember-template-imports": "1.4.1-unstable.b29a807",
"@glint/template": "1.4.1-unstable.b29a807",
"@typescript-eslint/parser": "^8.8.0",
"ember-template-lint": "^6.0.0",
"eslint": "^8.56.0",
"eslint-plugin-ember": "^12.2.1",
"eslint-plugin-node": "^11.1.0",
"prettier": "^3.3.3",
"release-plan": "^0.9.0",
"typescript": "^5.5.0"
},
"packageManager": "[email protected]",
"volta": {
"node": "22.11.0",
"pnpm": "9.12.3"
},
"pnpm": {
"overrides": {
"@glimmer/component": "1.1.2",
"@glint/core": "1.5.0",
"@glint/environment-ember-loose": "1.5.0",
"@glint/environment-ember-template-imports": "1.4.1-unstable.b29a807",
"@glint/template": "1.4.1-unstable.b29a807",
"ember-cli-babel": "^8.2.0",
"ember-cli-typescript": "5.3.0"
},
"peerDependencyRules": {
"allowAny": [
"typescript",
"ember-source"
],
"ignoreMissing": [
"webpack",
"rsvp"
]
}
}
}