30 lines
800 B
JSON
30 lines
800 B
JSON
{
|
|
"name": "nose-pluto",
|
|
"private": true,
|
|
"type": "module",
|
|
"workspaces": [
|
|
"app"
|
|
],
|
|
"scripts": {
|
|
"runner": "bun run --cwd ./app runner",
|
|
"dev": "bun run --cwd ./app dev",
|
|
"start": "bun run --cwd ./app start",
|
|
"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/*"
|
|
}
|
|
}
|