-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.72 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.72 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
{
"name": "dub-editor",
"displayName": "DUB Editor",
"description": "GUI editor for opening dub.sdl and dub.json files",
"publisher": "webfreak",
"version": "0.1.5",
"repository": {
"type": "git",
"url": "https://github.com/Pure-D/dub-editor.git"
},
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:dub.json",
"workspaceContains:dub.sdl"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "dub-editor.helloWorld",
"title": "Hello World"
}
],
"languages": [
{
"id": "sdl",
"aliases": [
"SDL",
"Simple Declarative Language"
],
"extensions": [
".sdl"
],
"configuration": "./lang-configs/sdl.json"
}
],
"grammars": [
{
"language": "sdl",
"scopeName": "source.sdl",
"path": "./syntaxes/sdl.json"
}
],
"jsonValidation": [
{
"fileMatch": "dub.json",
"url": "./json-validation/dub.schema.json"
}
],
"customEditors": [
{
"viewType": "dub-editor",
"displayName": "DUB Recipe Editor",
"selector": [
{
"filenamePattern": "dub.json"
},
{
"filenamePattern": "package.json"
},
{
"filenamePattern": "dub.sdl"
}
],
"priority": "option"
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint",
"watch": "npm-run-all -p watch:*",
"watch:tsc": "tsc --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc",
"lint": "eslint src",
"test": "vscode-test --timeout 120000",
"grammar": "js-yaml syntaxes/sdl.yml > syntaxes/sdl.json"
},
"dependencies": {
"@vscode/codicons": "^0.0.36",
"@vscode/webview-ui-toolkit": "^1.4.0",
"axios": "^1.12.2",
"jsonc-parser": "^3.3.1"
},
"devDependencies": {
"@types/vscode": "^1.90.0",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"js-yaml": "^4.1.0",
"eslint": "^9.36.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.9.3",
"@vscode/test-cli": "^0.0.11",
"@vscode/test-electron": "^2.5.2"
},
"__metadata": {
"publisherDisplayName": "WebFreak",
"publisherId": "e054f80a-50f9-4d80-85c8-6ff87eef6c35"
}
}