forge/package.json
Chris Wanstrath 46652243c5 v0.1.1
2026-01-29 18:34:52 -08:00

35 lines
745 B
JSON

{
"name": "@_because/forge",
"version": "0.1.1",
"type": "module",
"main": "src/index.tsx",
"module": "src/index.tsx",
"types": "src/index.tsx",
"exports": {
".": {
"import": "./src/index.tsx",
"types": "./src/index.tsx"
}
},
"files": [
"src/index.tsx",
"src/types.ts",
"README.md"
],
"scripts": {
"dev": "bun build:spa && bun run --hot server.tsx",
"test": "bun test",
"build:spa": "bun build examples/spa/index.tsx --outfile dist/spa.js --target browser"
},
"devDependencies": {
"@types/bun": "latest",
"@types/prismjs": "^1.26.5",
"hono": "^4.11.3",
"prismjs": "^1.30.0",
"snarkdown": "^2.0.0"
},
"peerDependencies": {
"typescript": "^5"
}
}