forked from zenc-lang/vscode-zenc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.63 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.63 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
{
"name": "zenc",
"displayName": "Zen C",
"description": "Language support for Zen C",
"version": "0.0.2",
"publisher": "z-libs",
"repository": {
"type": "git",
"url": "https://github.com/z-libs/zenc-vscode"
},
"license": "MIT",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Programming Languages"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "zenc",
"aliases": [
"Zen C",
"zenc"
],
"extensions": [
".zc"
],
"configuration": "./language-configuration.json"
}
],
"breakpoints": [
{
"language": "zenc"
}
],
"grammars": [
{
"language": "zenc",
"scopeName": "source.zenc",
"path": "./syntaxes/zenc.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "Zen C",
"properties": {
"zenc.serverPath": {
"type": [
"string",
"null"
],
"default": "zc",
"description": "Path to the Zen C compiler executable (zc)"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"bundle": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/vscode": "^1.75.0",
"esbuild": "^0.27.2",
"typescript": "^4.9.5"
},
"dependencies": {
"vscode-languageclient": "^8.1.0"
}
}