-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.1 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
{
"name": "pedagogical",
"version": "0.1.2",
"displayName": "Pedagogical",
"description": "Real-time visualization of your program's debug state",
"publisher": "ksu-alt-cs",
"license": "MIT",
"repository": {
"type": "git",
"url": "github:alt-cs-lab/pedagogical-vscode"
},
"bugs": {
"url": "https://github.com/alt-cs-lab/pedagogical-vscode/issues"
},
"engines": {
"vscode": "^1.75.0"
},
"contributes": {
"commands": [
{
"command": "pedagogical.showPedagogicalView",
"title": "Pedagogical: Show Pedagogical View"
}
],
"jsonValidation": [
{
"fileMatch": "pedagogical-rules.{json,jsonc}",
"url": "./schemas/pedagogical-rules-schema.json"
}
]
},
"activationEvents": [
"onDebug"
],
"categories": [
"Visualization",
"Debuggers",
"Education"
],
"main": "./dist/extension/extension.js",
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]",
"scripts": {
"vscode:prepublish": "yarn cleanbuild",
"watch": "concurrently 'yarn workspace extension watch' 'yarn workspace webview-ui watch'",
"build": "yarn workspace extension build && yarn workspace webview-ui build",
"clean": "node scripts/clean.mjs",
"cleanbuild": "yarn clean && yarn build",
"generate-schema": "node scripts/generateSchema.mjs",
"lint": "yarn eslint .",
"redux-devtools": "yarn workspace webview-ui run redux-devtools",
"storybook": "yarn workspace webview-ui run storybook"
},
"devDependencies": {
"@types/fs-extra": "^11",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vscode/vsce": "^2.26.1",
"concurrently": "^8.2.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "latest",
"fs-extra": "^11.1.1",
"json-rules-engine": "^6.5.0",
"prettier": "^3.2.5",
"typescript": "*",
"typescript-json-schema": "^0.63.0"
}
}