-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.05 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "lsp-sample",
"displayName": "lsp-sample",
"description": "Language Server Sample Extension",
"version": "0.0.1",
"author": "vscode-jp",
"publisher": "vscode-jp",
"license": "SEE LICENSE IN LICENSE",
"galleryBanner": {
"color": "#FFFFFF",
"theme": "light"
},
"repository": {
"type": "git",
"url": "https://github.com/Ikuyadeu/vscode-language-server-template"
},
"bugs": {
"url": "https://github.com/Ikuyadeu/vscode-language-server-template/issues"
},
"engines": {
"vscode": "^1.69.1"
},
"categories": [
"Linters",
"Formatters"
],
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "LSP configuration",
"properties": {
"LSPSampleExample.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "verbose",
"description": "VS CodeとLSPの間でのトレースを表示する"
}
}
}
},
"main": "./client/out/extension",
"scripts": {
"vscode:prepublish": "npm run webpack",
"webpack": "npm run clean && webpack --mode production --config ./client/webpack.config.js && webpack --mode production --config ./server/webpack.config.js",
"webpack:dev": "npm run clean && webpack --mode none --config ./client/webpack.config.js && webpack --mode none --config ./server/webpack.config.js",
"compile": "tsc -b",
"compile:client": "tsc -b ./client/tsconfig.json",
"compile:server": "tsc -b ./server/tsconfig.json",
"watch": "tsc -b -w",
"clean": "rimraf client/out && rimraf server/out",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "18.6.4",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"glob": "^8.0.3",
"merge-options": "^3.0.4",
"rimraf": "^3.0.2",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"mocha": "^10.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}