-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.59 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.59 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
{
"name": "zetta-cue",
"displayName": "Zetta CUE",
"description": "Hover and validation for zetta_utils builder specs in CUE.",
"version": "0.1.0",
"publisher": "zettaai",
"engines": {
"vscode": "^1.85.0"
},
"main": "./dist/extension.js",
"extensionKind": [
"workspace"
],
"activationEvents": [
"onLanguage:cue"
],
"contributes": {
"languages": [
{
"id": "cue",
"extensions": [".cue"]
}
],
"commands": [
{
"command": "zetta-cue.regenerate",
"title": "Zetta CUE: Regenerate Builder Metadata"
}
],
"configuration": {
"title": "Zetta CUE",
"properties": {
"zettaCue.pythonPath": {
"type": "string",
"default": "",
"description": "Path to the Python interpreter with zetta_utils installed. If empty, falls back to the active Python extension's interpreter, then PATH."
},
"zettaCue.cuePath": {
"type": "string",
"default": "cue",
"description": "Path to the cue binary."
},
"zettaCue.extractorPath": {
"type": "string",
"default": "",
"description": "Path to extract.py. If empty, uses the one bundled with the extension."
}
}
}
},
"scripts": {
"build": "esbuild src/extension.ts --bundle --platform=node --external:vscode --outfile=dist/extension.js --format=cjs",
"watch": "npm run build -- --watch"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.85.0",
"esbuild": "^0.20.0",
"typescript": "^5.3.0"
}
}