-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
135 lines (135 loc) · 3.95 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@cardstack/boxel-motion",
"version": "1.0.0",
"description": "Boxel Motion Library.",
"keywords": [
"ember-addon"
],
"repository": "",
"license": "MIT",
"author": "",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"build": "concurrently \"npm:build:*\" --names \"build:\"",
"build:js": "rollup --config",
"build:types": "glint --declaration",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
"lint:glint": "glint",
"lint:hbs": "ember-template-lint .",
"lint:hbs:fix": "ember-template-lint . --fix",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:types": "glint",
"rebuild:icons": "node bin/rebuild-icons.mjs",
"rebuild:usage": "node bin/rebuild-usage.mjs",
"prepack": "rollup --config",
"start": "concurrently \"npm:start:*\" --names \"start:\"",
"start:js": "rollup --config --watch --no-watch.clearScreen",
"start:types": "glint --declaration --watch",
"test": "echo 'A v2 addon does not have tests, run tests in test-app'",
"test:ember": "ember test"
},
"dependencies": {
"@ember/string": "^3.1.1",
"@embroider/addon-shim": "^1.8.6",
"@glimmer/component": "^1.1.2",
"@glint/template": "^1.4.0",
"ember-auto-import": "^2.7.2",
"ember-cli-babel": "^7.26.11",
"ember-cli-htmlbars": "^6.3.0",
"ember-cli-typescript": "^5.2.1",
"ember-concurrency": "^4.0.0",
"ember-load-initializers": "^2.1.2",
"ember-modifier": "^4.1.0",
"file-loader": "^6.2.0",
"macro-decorators": "^0.1.2",
"style-value-types": "^5.1.2",
"typescript": "~5.1.6"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/plugin-proposal-decorators": "^7.22.10",
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/plugin-transform-class-static-block": "^7.22.11",
"@babel/plugin-transform-typescript": "^7.22.15",
"@babel/runtime": "^7.22.11",
"@embroider/addon-dev": "^4.1.0",
"@embroider/macros": "^1.13.2",
"@rollup/plugin-babel": "^6.0.3",
"@tsconfig/ember": "3.0.1",
"@glint/core": "^1.4.0",
"@glint/environment-ember-template-imports": "^1.4.0",
"@types/htmlbars-inline-precompile": "^3.0.3",
"@types/qunit": "^2.11.3",
"@types/rsvp": "^4.0.9",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"babel-plugin-ember-template-compilation": "^2.2.1",
"concurrently": "^8.0.1",
"ember-source": "~4.12.0",
"ember-template-imports": "^3.1.2",
"ember-template-lint": "^5.11.2",
"ember-template-lint-plugin-prettier": "^5.0.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-ember": "^11.4.2",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"prettier-plugin-ember-template-tag": "^1.1.0",
"rollup": "^3.28.1",
"rollup-plugin-copy": "^3.4.0"
},
"peerDependencies": {
"@glint/environment-ember-loose": "^1.4.0",
"ember-source": "^4.0.0",
"typescript": "^5.1.6"
},
"engines": {
"node": "14.* || 16.* || >= 18"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"app-js": {},
"main": "addon-main.cjs",
"public-assets": {},
"type": "addon",
"version": 2
},
"volta": {
"extends": "../../../package.json"
},
"exports": {
".": {
"types": "./declarations/index.d.ts",
"default": "./dist/index.js"
},
"./*": {
"types": "./declarations/*.d.ts",
"default": "./dist/*.js"
},
"./addon-main.js": "./addon-main.cjs"
},
"files": [
"addon-main.cjs",
"declarations",
"dist",
"public"
],
"typesVersions": {
"*": {
"*": [
"declarations/*"
]
}
}
}