-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.53 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.53 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
{
"name": "zetta-utils-cue-support",
"displayName": "Zetta Utils CUE Support",
"description": "Intelligent autocomplete and validation for zetta_utils CUE specifications",
"version": "0.1.0",
"publisher": "zetta-research",
"repository": {
"type": "git",
"url": "https://github.com/ZettaAI/zetta_utils"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"keywords": [
"cue",
"zetta",
"autocomplete",
"volumetric",
"neuroscience"
],
"extensionDependencies": [
"ms-python.python"
],
"activationEvents": [
"onLanguage:cue"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Zetta Utils CUE Support",
"properties": {
"zettatUtilsCue.enableAutocomplete": {
"type": "boolean",
"default": true,
"description": "Enable intelligent autocomplete for zetta_utils builders"
},
"zettatUtilsCue.enableValidation": {
"type": "boolean",
"default": true,
"description": "Enable validation of builder parameters"
},
"zettatUtilsCue.metadataPath": {
"type": "string",
"default": "",
"description": "Path to custom builder metadata JSON file (leave empty for built-in metadata)"
}
}
},
"commands": [
{
"command": "zettatUtilsCue.refreshMetadata",
"title": "Refresh Builder Metadata",
"category": "Zetta Utils CUE"
},
{
"command": "zettatUtilsCue.selectPythonInterpreter",
"title": "Select Python Interpreter",
"category": "Zetta Utils CUE"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"package": "vsce package"
},
"devDependencies": {
"@types/node": "18.x",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.2.0",
"eslint": "^9.16.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@types/semver": "^7.7.0",
"semver": "^7.7.2",
"vscode-languageclient": "^9.0.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-uri": "^3.1.0"
}
}