Files
hermes-mobile/apps/companion/package.json
T
2026-07-09 04:43:00 +00:00

27 lines
620 B
JSON

{
"name": "@hermes-mobile/companion",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint src",
"setup": "tsx src/cli.ts setup"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@hermes-mobile/shared": "file:../../packages/shared",
"fastify": "^5.2.1"
},
"devDependencies": {
"tsx": "^4.19.2"
},
"bin": {
"hermes-mobile-companion": "dist/cli.js"
}
}