nose-pluto/package.json
Chris Wanstrath d12a4e0761 always
2025-09-22 14:57:48 -07:00

29 lines
755 B
JSON

{
"name": "nose-pluto",
"private": true,
"type": "module",
"workspaces": [
"app"
],
"scripts": {
"dev": "bun run --cwd ./app dev",
"start": "bun run --cwd ./app start",
"build": "bun run --cwd ./app build",
"remote:install": "bun run --cwd ./app remote:install",
"remote:start": "bun run --cwd ./app remote:start",
"remote:stop": "bun run --cwd ./app remote:stop",
"remote:restart": "bun run --cwd ./app remote:restart"
},
"dependencies": {
"hono": "^4.9.7"
},
"devDependencies": {
"@types/bun": "latest"
},
"alias": {
"@utils": "./app/src/utils.tsx",
"@config": "./app/src/config.ts",
"@/*": "./app/src/*"
}
}