Files
sub-store/package.json
T
rogee b7a7cd9c71 chore: add pnpm workspace with dev:frontend / dev:backend scripts
- Root package.json with dev:frontend, dev:backend, dev (parallel), build scripts
- pnpm-workspace.yaml linking frontend/ subpackage
- pnpm-lock.yaml for reproducible installs
- .gitignore: exclude root node_modules/
2026-07-27 22:55:53 +08:00

19 lines
508 B
JSON

{
"name": "sub-store",
"private": true,
"version": "1.0.0",
"description": "Sub-Store — subscription aggregation and proxy management",
"type": "module",
"scripts": {
"dev:frontend": "pnpm --filter sub-store-frontend dev",
"dev:backend": "go run . serve -c config/config.yaml",
"dev": "pnpm run /^dev:.*/",
"build:frontend": "pnpm --filter sub-store-frontend build",
"build:backend": "go build -o sub-store ."
},
"engines": {
"node": ">=18",
"pnpm": ">=9"
}
}