forked from lifeart/els-addon-glint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "els-addon-import-specifiers",
"version": "0.0.2",
"description": "Jump to import specifiers in a project",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx swc ./index.ts -o index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/suchitadoshi1987/els-addon-import-specifiers.git"
},
"author": "Suchita Doshi <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/suchitadoshi1987/els-addon-import-specifiers/issues"
},
"homepage": "https://github.com/suchitadoshi1987/els-addon-import-specifiers#readme",
"dependencies": {
"@lifeart/ember-language-server": "^1.10.0",
"vscode-jsonrpc": "^6.0.0",
"vscode-languageserver-protocol": "^3.16.0",
"vscode-languageserver-textdocument": "^1.0.1",
"vscode-uri": "^3.0.2"
},
"ember-language-server": {
"entry": "./index",
"debug": false,
"capabilities": {
"definitionProvider": true
}
},
"devDependencies": {
"@swc/cli": "^0.1.32",
"@swc/core": "^1.2.45",
"@types/node": "^14.14.22"
}
}