-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 748 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 748 Bytes
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
{
"name": "your-python",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --hot src/index.ts",
"start": "NODE_ENV=production bun src/index.ts",
"preflight": "biome check && bunx tsc --noEmit",
"build": "bun run build.ts"
},
"dependencies": {
"@codemirror/commands": "^6.10.1",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/language": "^6.12.1",
"@codemirror/state": "^6.5.4",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.39.12",
"bun-plugin-tailwind": "^0.1.2",
"codemirror": "^6.0.2",
"preact": "^10.28.3",
"preact-render-to-string": "^6.6.5",
"tailwindcss": "^4.1.11"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@types/bun": "latest"
}
}