generated from IWANABETHATGUY/tower-lsp-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.3 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
{
"name": "jsonui-support",
"description": "jsonui support",
"publisher": "CoolLoong",
"license": "MIT",
"version": "0.0.7",
"icon": "icon.png",
"categories": ["Snippets"],
"keywords": [
"minecraft",
"bedrock",
"jsonui",
"language-server",
"tower-lsp"
],
"repository": {
"url": "https://github.com/CoolLoong/jsonui-lsp"
},
"engines": {
"vscode": "^1.66.0"
},
"main": "./dist/extension.js",
"contributes": {
"languages": [
{
"id": "jsonui",
"extensions": [
".json"
]
}
],
"configuration": {
"type": "object",
"title": "jsonui-support",
"properties": {
"jsonui-support.log.level": {
"type": "string",
"scope": "window",
"enum": [
"off",
"messages",
"verbose"
],
"enumDescriptions": [
"No traces",
"Error only",
"Full log"
],
"default": "verbose",
"description": "Traces the communication between VS Code and jsonui language server."
}
}
}
},
"activationEvents": [
"onLanguage:json"
],
"scripts": {
"postinstall": "cd client && npm i",
"vscode:prepublish": "npm run build",
"test-compile": "tsc -p ./",
"compile": "cross-env NODE_ENV=production tsc -b",
"watch": "cross-env rimraf dist && tsc -b -w",
"lint": "eslint src --ext ts",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js",
"build": "webpack --mode production --config webpack.config.js",
"package": "vsce package --no-dependencies",
"publish": "vsce publish --no-dependencies"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^12.12.0",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"cross-env": "^7.0.3",
"electron-rebuild": "^1.11.0",
"esbuild": "^0.23.1",
"eslint": "^7.6.0",
"glob": "^7.1.7",
"mocha": "^8.0.1",
"rimraf": "^6.0.1",
"ts-loader": "^9.5.1",
"typescript": "5.4.5",
"vscode-test": "^1.4.0",
"vscode-uri": "^3.0.2",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"vscode-languageclient": "9.0.1"
}
}