honu/package.json
2025-11-04 19:13:05 -08:00

18 lines
577 B
JSON

{
"name": "fin",
"version": "0.1.0",
"type": "module",
"scripts": {
"build": "bun build src/app.ts --outdir=dist --target=browser && cp index.html dist/index.html && sed -i '' 's|src=\"dist/app.js\"|src=\"app.js\"|g' dist/index.html",
"serve": "cd dist && python3 -m http.server 3002",
"dev": "bun run build && bun run serve"
},
"dependencies": {
"@codemirror/language": "^6.11.3",
"@codemirror/view": "^6.38.3",
"@lezer/highlight": "^1.2.3",
"codemirror": "^6.0.2",
"shrimp": "git+https://git.nose.space/probablycorey/shrimp"
}
}