nose-pluto/package.json
2025-09-26 10:16:59 -07:00

30 lines
798 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",
"push": "bun run --cwd ./app push",
"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": {
"@nose": "./app/src/helpers.tsx",
"@config": "./app/src/config.ts",
"@/*": "./app/src/*"
}
}