forked from temporalio/vscode-debugger-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.16 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
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "temporalio",
"displayName": "Temporal.io",
"version": "0.1.2",
"description": "Debug workflows by their ID or history file. Set breakpoints in code or on history events.",
"categories": [
"Debuggers",
"Visualization"
],
"keywords": [
"temporal",
"workflow",
"debugger",
"vscode"
],
"repository": {
"type": "git",
"url": "https://github.com/temporalio/vscode-debugger-extension"
},
"license": "MIT",
"publisher": "temporal-technologies",
"main": "./extension/dist/extension.js",
"scripts": {
"build": "concurrently \"npm run build.extension\" \"npm run build.webview\"",
"build.extension": "tsc --build extension",
"build.extension.watch": "tsc --build --watch extension",
"build.watch": "concurrently \"npm run build.extension.watch\" \"npm run build.webview.watch\"",
"build.webview": "rollup -c",
"build.webview.watch": "rollup -c -w --watch.onEnd \"node scripts/reload-webview.mjs\"",
"format": "prettier --write .",
"lint": "eslint src --ext .ts --no-error-on-unmatched-pattern && prettier --end-of-line auto --check .",
"publish": "vsce publish",
"test": "vitest"
},
"contributes": {
"commands": [
{
"command": "temporal.debugger-extension.open-panel",
"title": "Temporal: Open Panel"
}
],
"configuration": {
"title": "Temporal debugger",
"properties": {
"temporal.replayerEntrypoint": {
"type": "string",
"default": "src/debug-replayer.ts",
"description": "Specifies which file will be used to start a replayer process."
}
}
}
},
"dependencies": {
"@temporalio/client": "^1.7.4",
"@temporalio/common": "^1.7.4",
"@temporalio/proto": "^1.7.4",
"@vscode/webview-ui-toolkit": "^1.2.1",
"express": "^4.18.2",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@tsconfig/node16": "^1.0.3",
"@tsconfig/svelte": "^3.0.0",
"@types/chai": "^4.3.4",
"@types/express": "^4.17.16",
"@types/glob": "^8.0.1",
"@types/humanize-duration": "^3.27.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/vscode": "^1.77.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vitest/coverage-v8": "^0.34.6",
"@vscode/test-electron": "^2.2.3",
"@vscode/vsce": "^2.19.0",
"concurrently": "^7.6.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-tsdoc": "^0.2.17",
"humanize-duration": "^3.28.0",
"nodemon": "^2.0.20",
"prettier": "2.8.3",
"release": "^6.3.1",
"rollup": "^3.12.0",
"rollup-plugin-css-only": "^4.3.0",
"rollup-plugin-svelte": "^7.1.0",
"svelte": "^3.55.1",
"svelte-check": "^3.0.3",
"svelte-preprocess": "^5.0.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"vite": "^4.5.0",
"vitest": "^0.34.6"
},
"engines": {
"vscode": "^1.77.3"
},
"icon": "logo.png"
}