-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.49 KB
/
package.json
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": "zdl-vscode",
"displayName": "ZDL Editor for VSCode",
"description": "Provides Syntax Highlighting and Language Support for ZenWave Domain Language (ZDL) in Visual Studio Code",
"icon": "resources/zenwave-logo.png",
"version": "0.0.3",
"license": "MIT",
"publisher": "ZenWave360",
"bugs": {
"url": "https://github.com/ZenWave360/zdl-vscode/issues"
},
"homepage": "https://www.zenwave360.io/",
"repository": {
"type": "git",
"url": "https://github.com/ZenWave360/zdl-vscode.git"
},
"author": {
"name": "Iván García Sainz-Aja",
"email": "[email protected]",
"url": "https://github.com/ivangsa"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [],
"browser": "./dist/web/extension.js",
"contributes": {
"languages": [
{
"id": "zdl",
"aliases": [
"ZenWave Domain Language ZDL",
"zdl"
],
"extensions": [
"zdl",
"zw"
],
"configuration": "./syntaxes/language-configuration.json",
"icon": {
"light": "./resources/zenwave-logo.png",
"dark": "./resources/zenwave-logo.png"
}
}
],
"grammars": [
{
"language": "zdl",
"scopeName": "source.zdl",
"path": "./syntaxes/zdl.tmLanguage.json"
}
]
},
"keywords": [
"ZenWave 360º",
"DSL",
"DDD",
"Event Storming",
"Domain Driven Design",
"API-First"
],
"scripts": {
"test": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=dist/web/test/suite/index.js",
"pretest": "npm run compile-web",
"vscode:prepublish": "npm run package-web",
"compile-web": "webpack",
"watch-web": "webpack --watch",
"package-web": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint src --ext ts",
"run-in-browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. ."
},
"devDependencies": {
"@types/vscode": "^1.85.0",
"@types/mocha": "^10.0.6",
"@types/assert": "^1.5.10",
"eslint": "^8.56.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"mocha": "^10.2.0",
"typescript": "^5.3.3",
"@vscode/test-web": "^0.0.50",
"ts-loader": "^9.5.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"@types/webpack-env": "^1.18.4",
"assert": "^2.1.0",
"process": "^0.11.10"
}
}