-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.6 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.6 KB
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
{
"name": "svelte-intellisense",
"displayName": "Svelte Intellisense",
"description": "Provides intellisense for data, events, slots etc. in components.",
"icon": "images/icon.png",
"repository": {
"url": "https://github.com/ArdenIvanov/svelte-intellisense.git"
},
"version": "0.7.1",
"publisher": "ardenivanov",
"keywords": [
"svelte",
"vscode"
],
"author": "Aleksandr Ivanov",
"license": "MIT",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Programming Languages",
"Formatters"
],
"activationEvents": [
"onLanguage:svelte"
],
"main": "./client/out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Svelte Intellisense configuration",
"properties": {
"svelte-intellisense.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
}
},
"scripts": {
"vscode:prepublish": "cd client && yarn update-vscode && cd .. && yarn compile",
"compile:client": "tsc -p ./client/tsconfig.json",
"compile:server": "tsc -p ./server/tsconfig.json",
"watch:client": "tsc -w -p ./client/tsconfig.json",
"watch:server": "tsc -w -p ./server/tsconfig.json",
"compile": "yarn compile:client && yarn compile:server",
"postinstall": "cd client && yarn install && cd ../server && yarn install && cd .."
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"tslint": "^5.8.0",
"typescript": "^2.6.1",
"vscode": "^1.1.36"
}
}