-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.44 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
{
"name": "hoon-highlighter",
"displayName": "Hoon-highlighter",
"description": "Hoon highlighter using tree-sitter",
"license": "Apache-2.0",
"repository": "https://github.com/urbit-pilled/vscode-hoon",
"publisher": "urbit-pilled",
"version": "0.1.3",
"engines": {
"vscode": "^1.78.1"
},
"categories": [
"Programming Languages"
],
"main": "./out/extension.js",
"activationEvents": [
],
"scripts": {
"compile": "tsc -p ./",
"package": "tsc -p ./ && npx vsce package",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"vscode:prepublish": "npm run esbuild-base -- --minify"
},
"contributes": {
"languages": [
{
"id": "hoon",
"aliases": [
"Hoon"
],
"extensions": [
".hoon"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "hoon",
"scopeName": "source.hoon",
"path": "./syntaxes/hoon.tmLanguage.json"
}
]
},
"dependencies": {
"web-tree-sitter": "0.20.8"
},
"devDependencies": {
"@types/node": "^13.7.2",
"@types/vscode": "^1.78.0",
"esbuild": "^0.19.0",
"eslint": "^8.46.0",
"typescript": "^5.1.3",
"vsce": "^2.15.0"
}
}