-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 4.96 KB
/
package.json
File metadata and controls
142 lines (142 loc) · 4.96 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
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
137
138
139
140
141
142
{
"name": "helios",
"displayName": "Helios",
"description": "Helios language support for VS Code",
"publisher": "HeliosLang",
"version": "0.2.0",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/hyperion-bt/helios-ide-plugins"
},
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "pnpm run build:packages && pnpm run build:views && pnpm run build:adapter && pnpm run build:extension",
"build:adapter": "pnpm -C ./apps/DebugAdapter run build ",
"build:extension": "pnpm -C ./apps/Extension run build",
"build:packages": "pnpm run build:package:components && pnpm run build:package:schemas",
"build:package:components": "pnpm -C ./packages/components run build",
"build:package:schemas": "pnpm -C ./packages/schemas run build",
"build:views": "pnpm run build:view:args && pnpm run build:view:value",
"build:view:args": "pnpm -C ./apps/ArgsView run build",
"build:view:value": "pnpm -C ./apps/ValueView run build",
"deploy": "vsce publish",
"package": "vsce package --no-dependencies && code --install-extension ./helios-0.1.8.vsix ; true",
"prettify": "prettier . --write",
"test": "pnpm run test:types",
"test:types": "pnpm run test:types:schemas && pnpm run test:types:components && pnpm run test:types:adapter && pnpm run test:types:extension",
"test:types:adapter": "pnpm -C ./apps/DebugAdapter run test:types",
"test:types:components": "pnpm -C ./packages/components run test:types",
"test:types:extension": "pnpm -C ./apps/Extension run test:types",
"test:types:schemas": "pnpm -C ./packages/schemas run test:types"
},
"engines": {
"vscode": "^1.77.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "helios",
"aliases": [
"helios",
"Helios",
"Helios-Lang",
"Helios-lang",
"Helios_lang",
"helios_lang"
],
"extensions": [
".hl",
".helios"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "file-icon-light.png",
"dark": "file-icon-dark.png"
}
}
],
"grammars": [
{
"language": "helios",
"scopeName": "source.helios",
"path": "./grammar.json"
}
],
"debuggers": [
{
"type": "heliosdebugger",
"label": "Helios Debugger",
"languages": [
"helios"
],
"program": "./dist/debugAdapter.js",
"runtime": "node",
"configurationAttributes": {
"launch": {
"properties": {
"uplcProgram": {
"type": "string",
"description": "UPLCProgram cbor hex"
},
"args": {
"type": "array",
"items": {
"type": "string"
},
"description": "Program arguments"
}
},
"required": [
"uplcProgram"
]
}
},
"configurationSnippets": [
{
"label": "Helios: Run Current",
"description": "Minimal config; extension fills details at runtime.",
"body": {
"type": "helios",
"request": "launch",
"name": "Helios: Run Current"
}
}
]
}
],
"views": {
"debug": [
{
"type": "webview",
"id": "helios.entryPointAndArguments",
"name": "Helios Entry Point & Arguments",
"when": "heliosDebugActive"
}
]
},
"commands": []
},
"main": "./dist/extension.js",
"activationEvents": [
"onDebug:helios"
],
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"semi": false,
"singleQuote": false
},
"devDependencies": {
"@vscode/vsce": "^3.0.0",
"vscode-nls": "^5.2.0",
"esbuild": "^0.25.9",
"prettier": "^3.6.2"
}
}