-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
164 lines (164 loc) · 5.07 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "coffeesense",
"displayName": "CoffeeSense",
"description": "IntelliSense for CoffeeScript based on its compiled JavaScript output",
"author": "phil294",
"license": "MIT",
"version": "1.15.0",
"icon": "asset/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/phil294/coffeesense"
},
"publisher": "phil294",
"keywords": [
"CoffeeScript",
"IntelliSense",
"Autocomplete",
"Go To Definition",
"Extension",
"coffee"
],
"scripts": {
"postinstall": "npm run install:server",
"install:server": "cd server && yarn",
"compile": "rollup -c rollup.config.js",
"watch": "rollup -c rollup.config.js -w",
"prepare-publish": "./build/release-cleanup.sh",
"build:test": "tsc -p test/tsconfig.json",
"pretest": "yarn build:test",
"test:lsp": "node ./dist-test/test/codeTestRunner.js lsp",
"test": "run-s test:lsp"
},
"categories": [
"Programming Languages"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": false
}
},
"engines": {
"vscode": "^1.52.0"
},
"activationEvents": [
"onLanguage:coffeescript"
],
"main": "./dist/coffeescriptMain.js",
"contributes": {
"commands": [
{
"command": "coffeesense.restartLSP",
"category": "CoffeeSense",
"title": "Restart LSP (CoffeeSense Language Server)"
},
{
"command": "coffeesense.showOutputChannel",
"category": "CoffeeSense",
"title": "Show Output Channel"
},
{
"command": "coffeesense.showGeneratedJavascript",
"category": "CoffeeSense",
"title": "Show generated JavaScript for current file (Debugging only; might not be valid JS)"
}
],
"breakpoints": [
{
"language": "coffeescript"
}
],
"configuration": {
"title": "CoffeeSense",
"properties": {
"coffeesense.ignoredTypescriptErrorCodes": {
"type": "array",
"items": {
"type": "number"
},
"default": [],
"description": "Some TypeScript errors don't make a lot of sense in CS context (see main README), you can ignore them here by supplying their IDs",
"scope": "application"
},
"coffeesense.ignoreProjectWarning": {
"type": "boolean",
"default": false,
"description": "CoffeeSense will warn about not setup correctly for the project. You can disable it.",
"scope": "application"
},
"coffeesense.useWorkspaceDependencies": {
"type": "boolean",
"default": false,
"description": "Use dependencies from workspace. Currently only for TypeScript.",
"scope": "application"
},
"coffeesense.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and CoffeeSense Language Server."
},
"coffeesense.dev.lspPath": {
"type": "string",
"description": "Path to lsp for CoffeeSense developers. There are two ways of using it. \n\n1. Clone phil294/coffeesense from GitHub, build it and point it to the ABSOLUTE path of `/server`.\n2. `yarn global add coffeesense-language-server` and point CoffeeSense to the installed location (`yarn global dir` + node_modules/coffeesense-language-server)",
"scope": "machine"
},
"coffeesense.dev.lspPort": {
"type": "number",
"description": "The port that the lsp listens to. Can be used for attaching to the LSP Node process for debugging / profiling.",
"default": -1
},
"coffeesense.dev.logLevel": {
"type": "string",
"description": "Log level for the lsp",
"default": "INFO",
"enum": [
"INFO",
"DEBUG"
],
"enumDescriptions": [
"Only log info messages. This is the default.",
"Log info and debug messages."
]
}
}
}
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0-13",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/glob": "^7.2.0",
"@types/lodash": "^4.14.179",
"@types/minimist": "^1.2.2",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"@types/shelljs": "^0.8.11",
"@types/vscode": "^1.52.0",
"@vscode/test-electron": "^2.1.3",
"esbuild": "^0.14.25",
"generate-license-file": "^1.3.0",
"glob": "^7.2.0",
"minimist": "^1.2.5",
"mocha": "^9.2.1",
"npm-run-all": "^4.1.5",
"ovsx": "^0.8.2",
"rollup": "^2.69.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"shelljs": "^0.8.5",
"ts-node": "^10.6.0",
"typescript": "^5.1.6",
"vsce": "^2.15.0",
"vscode-languageserver-types": "^3.16.0"
},
"dependencies": {
"vscode-languageclient": "^7.0.0"
}
}