-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
136 lines (136 loc) · 4.25 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "tolk-vscode",
"displayName": "Tolk Language Support (next-generation FunC)",
"description": "Support for Tolk Language in VS Code (next-generation FunC)",
"keywords": [
"TON",
"The Open Network",
"Tolk",
"FunC",
"Smart contract"
],
"icon": "logo.png",
"version": "0.6.0",
"engines": {
"vscode": "^1.63.0"
},
"activationEvents": [
"onLanguage:tolk"
],
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/ton-blockchain/tolk-vscode"
},
"author": "TON Core",
"publisher": "ton-core",
"license": "MIT",
"scripts": {
"test": "yarn jest",
"build": "webpack",
"grammar:wasm": "cd tree-sitter-tolk && tree-sitter generate && tree-sitter build-wasm --docker && cp tree-sitter-tolk.wasm ../server/tree-sitter-tolk.wasm",
"watch": "webpack --watch"
},
"main": "./dist/client",
"contributes": {
"languages": [
{
"id": "tolk",
"aliases": [
"Tolk"
],
"extensions": [
".tolk"
],
"icon": {
"light": "./ton-icon.svg",
"dark": "./ton-icon.svg"
},
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "tolk",
"scopeName": "source.tolk",
"path": "./syntaxes/.tmLanguage.json"
}
],
"snippets": [
{
"language": "tolk",
"path": "./snippets/snippets.json"
}
],
"commands": [
{
"command": "tolk.showTolkSdk",
"title": "Show detected Tolk SDK"
}
],
"configuration": {
"title": "Tolk",
"type": "object",
"properties": {
"tolk.autoDetectSDK": {
"order": 1,
"description": "Auto-detect Tolk SDK for common use cases (by looking at node_modules and default system paths)",
"type": "boolean",
"default": true
},
"tolk.manualSDKSettings": {
"order": 1,
"description": "If the tick above is unchecked, manually specify the following properties:",
"type": "object",
"additionalProperties": false,
"properties": {
"tolkCompilerVersion": {
"type": "string"
},
"stdlibFolder": {
"type": "string"
}
},
"default": {
"tolkCompilerVersion": "0.6",
"stdlibFolder": "/path/to/folder/stdlib-tolk"
}
},
"tolk.autocompleteAddParentheses": {
"description": "Add parentheses to autocomplete function suggestions",
"type": "boolean",
"default": true
},
"tolk.experimentalDiagnostics": {
"description": "Enable experimental diagnostics",
"type": "boolean",
"default": false
}
}
}
},
"dependencies": {
"nan": "^2.16.0",
"vscode-languageclient": "^8.0.2",
"vscode-languageserver": "^8.0.2",
"vscode-languageserver-textdocument": "^1.0.7",
"vscode-uri": "^3.0.7",
"web-tree-sitter": "^0.20.8"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.2.0",
"@types/vscode": "^1.63.0",
"copy-webpack-plugin": "^12.0.2",
"jest": "^29.7.0",
"tree-sitter-cli": "^0.20.6",
"ts-jest": "^29.2.4",
"typescript": "^5.4.5",
"ts-loader": "^9.5.1",
"vscode": "^1.1.37",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
}
}