-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.71 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
{
"name": "vscode-struct",
"displayName": "StructKit",
"description": "Official StructKit extension for VS Code and Cursor with schema validation and intelligent autocomplete",
"version": "0.1.0",
"publisher": "kennethbelitzky",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Programming Languages",
"Linters",
"Formatters"
],
"activationEvents": [
"onLanguage:yaml",
"workspaceContains:**/.struct.yaml",
"workspaceContains:**/*.struct.yaml"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "StructKit",
"properties": {
"structkit.commandPath": {
"type": "string",
"default": "structkit",
"description": "Path to the structkit command executable"
},
"structkit.customStructuresPath": {
"type": "string",
"default": "",
"description": "Path to custom structures directory"
},
"struct.commandPath": {
"type": "string",
"default": "structkit",
"description": "Deprecated: Use structkit.commandPath instead",
"deprecationMessage": "This setting is deprecated. Please use structkit.commandPath instead."
},
"struct.customStructuresPath": {
"type": "string",
"default": "",
"description": "Deprecated: Use structkit.customStructuresPath instead",
"deprecationMessage": "This setting is deprecated. Please use structkit.customStructuresPath instead."
}
}
},
"commands": [
{
"command": "struct.generateSchema",
"title": "Generate Custom Schema",
"category": "StructKit"
},
{
"command": "struct.refreshSchema",
"title": "Refresh Schema",
"category": "StructKit"
}
]
},
"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"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^24.1.0",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vscode/test-electron": "^2.3.4",
"@vscode/vsce": "^3.6.0",
"esbuild": "^0.18.20",
"eslint": "^9.32.0",
"mocha": "^11.7.1",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/httpdss/vscode-struct.git"
},
"bugs": {
"url": "https://github.com/httpdss/vscode-struct/issues"
},
"homepage": "https://github.com/httpdss/vscode-struct#readme",
"license": "MIT"
}