-
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) · 1.64 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.64 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": "ca65",
"displayName": "CA65",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.98.0"
},
"categories": [
"Programming Languages"
],
"main": "./client/out/extension",
"contributes": {
"configuration": {
"type": "object",
"properties": {
"ca65.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
},
"ca65.lsp.path": {
"scope": "window",
"type": "string",
"default": "",
"description": "Override path to LSP executable"
}
}
},
"languages": [
{
"id": "ca65",
"aliases": [
"CA65 Assembly"
],
"extensions": [
".s",
".asm",
".a65",
".inc",
".def"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "ca65",
"scopeName": "source.asm6502",
"path": "./syntaxes/asm6502.tmLanguage"
}
],
"commands": [
{
"command": "ca65.restartLanguageServer",
"title": "Restart CA65 Language Server"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -b",
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint",
"postinstall": "cd client && npm install",
"test": "sh ./scripts/e2e.sh"
},
"dependencies": {
"typescript": "^5.8.2"
}
}