-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
89 lines (89 loc) · 2.54 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
{
"name": "cashscript",
"publisher": "NathanielCherian",
"displayName": "cashscript",
"description": "Cashscript language support for Visual Studio Code",
"version": "0.3.0",
"icon": "media/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/nathanielCherian/vscode-cashscript"
},
"bugs": {
"url": "https://github.com/nathanielCherian/vscode-cashscript/issues"
},
"contributors": [
"Nathaniel Cherian"
],
"keywords": [
"cashscript",
"bch",
"blockchain",
"compiler",
"contract"
],
"categories": [
"Programming Languages",
"Snippets",
"Linters"
],
"engines": {
"vscode": "^1.63.1"
},
"activationEvents": [
"onLanguage:cashscript"
],
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "npm run -S esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run -S esbuild-base -- --sourcemap",
"esbuild-watch": "npm run -S esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"prepare": "node ./node_modules/vscode/bin/install"
},
"contributes": {
"languages": [
{
"id": "cashscript",
"aliases": [
"cashscript",
"Cashscript"
],
"extensions": [
".cash"
],
"configuration": "./cashscript.configuration.json"
}
],
"grammars": [
{
"language": "cashscript",
"scopeName": "source.cash",
"path": "./syntaxes/cashscript.tmLanguage.json"
}
],
"snippets": [
{
"language": "cashscript",
"path": "./snippets/cashscript.snippets.json"
}
]
},
"dependencies": {
"antlr4ts": "^0.5.0-alpha.4",
"vscode-languageclient": "^7.0.0",
"vscode-languageserver": "^7.0.0",
"vscode-languageserver-textdocument": "^1.0.4"
},
"devDependencies": {
"@types/node": "^20.3.3",
"@types/vscode": "^1.63.1",
"esbuild": "^0.12.29",
"typescript": "^4.5.5",
"vscode": "^1.1.37",
"vscode-test": "^1.6.1"
}
}