-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.6 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
{
"name": "AtCoder-InBrowser-Playground",
"version": "0.0.0",
"private": true,
"description": "AtCoder In-Browser Playground",
"type": "module",
"scripts": {
"dev:chrome": "wxt",
"dev:firefox": "wxt -b firefox",
"build:chrome": "wxt build",
"build:firefox": "wxt build -b firefox",
"build": "pnpm build:chrome && pnpm build:firefox",
"zip:chrome": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"zip": "pnpm zip:chrome && pnpm zip:firefox",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@jitl/quickjs-singlefile-browser-release-sync": "^0.32.0",
"@preact/signals": "^2.9.3",
"esbuild-wasm": "^0.28.1",
"monaco-editor": "0.55.1",
"object-inspect": "^1.13.4",
"preact": "^10.29.7",
"pyodide": "^314.0.2",
"quickjs-emscripten-core": "^0.32.0"
},
"devDependencies": {
"@preact/preset-vite": "^2.10.5",
"@wxt-dev/auto-icons": "^1.1.1",
"core-js-builder": "^3.49.0",
"esbuild": "^0.28.1",
"oxfmt": "^0.58.0",
"oxlint": "^1.73.0",
"typescript": "^5.9.3",
"vitest": "^4.1.10",
"wxt": "^0.20.27"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": ">=11.0.0 <12.0.0",
"onFail": "download"
}
}
}