-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.67 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
{
"name": "p16",
"displayName": "P16",
"description": "P16 Assembly extension for VSCode",
"version": "1.0.6",
"publisher": "roby2014",
"icon": "assets/icon.png",
"main": "./out/main.js",
"author": {
"name": "roby2014"
},
"repository": {
"type": "git",
"url": "https://github.com/roby2014/p16-vscode.git"
},
"engines": {
"vscode": "^1.69.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:p16"
],
"contributes": {
"commands": [
{
"command": "p16-vscode.compileP16",
"title": "Compile P16 assembly program",
"icon": {
"light": "fileicons/compile.svg",
"dark": "fileicons/compile.svg"
}
}
],
"menus": {
"editor/title": [
{
"when": "resourceLangId == p16",
"command": "p16-vscode.compileP16",
"group": "navigation@1"
}
]
},
"keybindings": [
{
"command": "p16-vscode.compileP16",
"key": "ctrl+shift+d",
"mac": "cmd+shift+d",
"when": "resourceLangId == p16"
}
],
"languages": [
{
"id": "p16",
"aliases": [
"p16",
"P16"
],
"extensions": [
".S",
".s"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "p16",
"scopeName": "source.s",
"path": "./syntaxes/p16.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "p16ExecutablePath",
"properties": {
"p16.executablePath": {
"type": [
"string",
"null"
],
"default": null,
"description": "Your P16 compiler executable path (e.g: `H:\\p16\\pas.exe`)."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "tsc",
"watch": "tsc -watch"
},
"dependencies": {
"child_process": "^1.0.2",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/node": "^18.0.6",
"@types/vscode": "^1.63.1"
}
}