forked from ObsidianLabs/vscode-algorand
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
111 lines (111 loc) · 2.55 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
{
"name": "vscode-algorand",
"displayName": "Algorand VS Code Extension",
"description": "Support for Algorand Technology Platform including TEAL language and PyTeal (python teal extension) in VS Code",
"icon": "images/icon.png",
"version": "0.1.2",
"license": "MIT",
"author": "obsidians",
"publisher": "obsidians",
"repository": {
"type": "git",
"url": "https://github.com/ObsidianLabs/vscode-algorand"
},
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:python",
"onLanguage:teal",
"onCommand:algorand.panel.show",
"onWebviewPanel:algorandPanel"
],
"main": "./client/out/extension",
"contributes": {
"commands": [
{
"command": "algorand.panel.show",
"title": "Show Algorand Panel",
"category": "Algorand"
}
],
"configuration": {
"type": "object",
"title": "Example configuration",
"properties": {
"languageServerExample.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"languageServerExample.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
},
"languages": [
{
"id": "teal",
"aliases": [
"TEAL",
"teal"
],
"extensions": [
".teal"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "teal",
"scopeName": "source.teal",
"path": "./syntaxes/teal.tmLanguage.json"
}
],
"taskDefinitions": [
{
"type": "Algorand Compiler",
"properties": {
"version": {
"type": "string",
"description": "Algorand version."
}
}
}
]
},
"scripts": {
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"vscode:prepublish": "npm run compile",
"watch": "npm-run-all -p watch:*",
"watch:extension": "tsc -b -w",
"watch:views": "cd client && npm run dev",
"compile": "npm-run-all compile:*",
"compile:extension": "tsc -b",
"compile:views": "cd client && npm run build",
"test": "sh ./scripts/e2e.sh"
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^12.12.0",
"@types/vscode": "^1.49.0",
"@typescript-eslint/parser": "^2.3.0",
"eslint": "^6.4.0",
"mocha": "^8.1.1",
"npm-run-all": "^4.1.5",
"typescript": "^3.9.4"
}
}