-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 897 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 897 Bytes
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
{
"name": "ember-auto-import-typescript",
"version": "0.6.3",
"description": "Enable `ember-auto-import` to import `.ts` files",
"keywords": [
"ember-addon",
"ember-auto-import",
"typescript",
"ember-cli-typescript",
"ts",
"import"
],
"license": "ISC",
"repository": "ClarkSource/ember-auto-import-typescript",
"scripts": {
"lint:js": "eslint --ext ts,js ."
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.18.10",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-typescript": "^7.18.10",
"@babel/preset-env": "^7.18.10"
},
"peerDependencies": {
"ember-auto-import": "^1.6.0"
},
"ember-addon": {
"before": [
"ember-auto-import"
]
}
}