-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.18 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
{
"name": "spigot",
"description": "",
"author": "Chris Bush",
"license": "MIT",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/cbush/spigot"
},
"publisher": "spigot",
"categories": [],
"engines": {
"vscode": "^1.43.0"
},
"activationEvents": [
"onLanguage:restructuredtext"
],
"main": "./build/client/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "spigot",
"properties": {
"spigot.enable": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Controls the enablement."
},
"spigot.options": {
"scope": "resource",
"type": "object",
"default": {},
"description": "Additional options."
},
"spigot.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VSCode and the language server."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "tsc -b",
"watch": "tsc -b -w",
"test": "jest",
"coverage": "jest --coverage"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/deep-equal": "^1.0.1",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@types/vscode": "^1.55.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-tsdoc": "^0.2.11",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"release-it": "^14.6.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4",
"vscode-languageserver-types": "^3.16.0"
},
"dependencies": {
"deep-equal": "^2.0.3",
"globby": "^11.0.1",
"restructured": "0.0.11",
"vscode-languageclient": "^6.1.4",
"vscode-languageserver": "^6.1.1",
"vscode-languageserver-textdocument": "^1.0.1"
}
}