-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.71 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
{
"name": "sa-vscode",
"version": "0.0.1",
"engines": {
"vscode": "^1.84.2"
},
"main": "./out/extension.js",
"activationEvents": [
"onLanguage:javascript"
],
"contributes": {
"commands": [
{
"command": "sa-vscode.pick",
"title": "Source Academy: Select Source chapter"
},
{
"command": "sa-vscode.show-panel",
"title": "Source Academy: Show the Source Academy panel"
}
],
"configuration": {
"title": "Source Academy",
"properties": {
"sa-vscode.frontendUrl": {
"type": "string",
"default": "http://localhost:8000/playground",
"description": "URL to the Source Academy frontend"
}
}
}
},
"scripts-info": {
"compile": "Build bundles",
"format": "Format source code",
"watch": "Recompile source code on change"
},
"scripts": {
"compile": "node ./esbuild.js",
"format": "yarn prettier . --write",
"vscode:prepublish": "yarn run compile",
"watch": "node ./esbuild.js --watch"
},
"devDependencies": {
"@types/lodash": "^4.17.9",
"@types/node": "^22.5.4",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@types/vscode": "^1.93.0",
"esbuild": "^0.23.1",
"husky": "^8.0.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"dependencies": {
"@blueprintjs/core": "^5.13.0",
"@blueprintjs/icons": "^5.13.0",
"esbuild-plugin-fileloc": "^0.0.6",
"esbuild-plugin-ignore": "^1.1.1",
"esbuild-plugin-polyfill-node": "^0.3.0",
"fast-levenshtein": "^3.0.0",
"js-slang": "^1.0.76",
"phaser": "^3.85.2",
"react": "^18.3.1",
"react-ace": "^12.0.0",
"react-dom": "^18.3.1"
}
}