-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.49 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.49 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
{
"name": "ldproxy-editor",
"displayName": "ldproxy for VS Code",
"description": "ldproxy configuration editor",
"version": "2.0.1",
"private": true,
"license": "MIT",
"repository": "https://github.com/ldproxy/editor",
"publisher": "iide",
"preview": false,
"categories": [
"Linters",
"Formatters",
"Other"
],
"keywords": [
"ldproxy",
"configuration",
"editor",
"generator"
],
"engines": {
"vscode": "^1.82.2"
},
"main": "./dist/dev/extension.js",
"browser": "./dist/dev/extension.js",
"icon": "./icon.png",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "ldproxy-editor.showAutoCreate",
"title": "Create Configuration Files",
"category": "ldproxy",
"icon": "$(add)"
}
],
"configuration": {
"type": "object",
"title": "ldproxy Editor Configuration",
"properties": {
"ldproxy-editor.baseUrl": {
"type": "string",
"format": "uri",
"scope": "machine"
}
}
}
},
"scripts": {
"install:all": "npm install --ignore-scripts && cd webview-ui && npm install",
"build:ui": "cd webview-ui && npm run build",
"start:ui": "cd webview-ui && npm run start",
"dev:native": "cd native && webpack --mode development",
"watch:native": "cd native && webpack --mode development --watch",
"build:native": "cd native && webpack --mode production --devtool hidden-source-map",
"prelaunch:native": "npm run build:ui && npm run dev:native",
"prepackage:native": "VITE_DEV=false npm run build:ui && npm run build:native && node vsix.mjs native ${VSIX_PLATFORM:-darwin-arm64}",
"package:native": "cd dist/native && vsce package -o ../vsix -t ${VSIX_PLATFORM:-darwin-arm64} --ignore-other-target-folders",
"dev:web": "cd web && webpack --mode development",
"watch:web": "cd web && webpack --mode development --watch",
"build:web": "cd web && webpack --mode production --devtool hidden-source-map",
"prelaunch:web": "npm run build:ui && npm run dev:web",
"prepackage:web": "VITE_DEV=false npm run build:ui && npm run build:web && node vsix.mjs web",
"package:web": "cd dist/web && vsce package -o ../vsix -t web",
"publish": "vsce publish --packagePath dist/vsix/ldproxy-editor-*.vsix",
"docker": "docker build -t editor:local-dev --no-cache --progress plain --build-arg VSIX_VERSION=snapshot .",
"test": "jest",
"lint": "eslint ./ --ext ts"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/mock-require": "^3.0.0",
"@types/node": "^12.20.55",
"@types/vscode": "^1.82.2",
"@types/webpack-env": "^1.18.2",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@vscode/test-web": "^0.0.22",
"@vscode/vsce": "^3.2.1",
"@xtracfg/core": "^4.3.5",
"@xtracfg/transport-native": "^4.3.5",
"@xtracfg/transport-websocket": "^4.3.5",
"async-mutex": "^0.4.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.51.0",
"fs-extra": "^11.2.0",
"glob": "^7.2.3",
"jest": "^29.7.0",
"js-md5": "^0.8.3",
"js-yaml": "^4.1.0",
"mock-require": "^3.0.3",
"path-browserify": "^1.0.1",
"prettier": "^2.8.8",
"process": "^0.11.10",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.0",
"typescript": "^5.3.3",
"webpack": "^5.88.2",
"webpack-cli": "^4.10.0",
"yaml": "^2.3.4"
}
}