-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.62 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
{
"name": "mini-faas-worker-code-ext",
"displayName": "mini-faas-worker-code-ext",
"description": "低码云函数在线编辑插件",
"version": "0.0.5",
"publisher": "lilong7676",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"repository": {
"type": "git",
"url": "https://github.com/lilong7676/mini-faas-worker-code-ext"
},
"browser": "./dist/web/extension.js",
"contributes": {
"commands": [
{
"command": "mini-faas-worker-code-ext.initWorkespace",
"title": "mini-faas-worker: initWorkespace"
},
{
"command": "mini-faas-worker-code-ext.initFiles",
"title": "mini-faas-worker: initFiles"
},
{
"command": "mini-faas-worker-code-ext.preview",
"title": "mini-faas-worker: build and preview"
}
]
},
"scripts": {
"postinstall": "cd packages/bundler && npm install && cd ../webview-client && npm install",
"test": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=dist/web/test/suite/index.js",
"pretest": "pnpm run compile-web",
"vscode:prepublish": "pnpm run build",
"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 --quality=stable --open-devtools --extensionDevelopmentPath=.",
"publish": "npx ovsx publish -p your-ovsx-token",
"---": "---",
"start": "concurrently \"npm:start-debug\" \"npm:run-in-browser\"",
"start-debug": "concurrently \"npm:watch-web\" \"npm:start:webview-client\" \"npm:start:bundler\" ",
"build": "./scripts/start-build.sh",
"start:webview-client": "pnpm --filter webview-client start",
"build:webview-client": "pnpm --filter webview-client build",
"start:bundler": "pnpm --filter bundler start"
},
"devDependencies": {
"@types/mocha": "^10.0.2",
"@types/node": "^16.18.34",
"@types/path-browserify": "^1.0.0",
"@types/vscode": "^1.75.0",
"@types/webpack-env": "^1.18.2",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vscode/test-web": "^0.0.52",
"assert": "^2.1.0",
"concurrently": "^8.2.2",
"eslint": "^8.50.0",
"eslint-plugin-react-hooks": "^4.6.2",
"mocha": "^10.2.0",
"process": "^0.11.10",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"path-browserify": "^1.0.1"
}
}