Files
simple-react-app-kit/package.json
T

29 lines
788 B
JSON
Raw Normal View History

2026-07-26 23:21:33 +08:00
{
"name": "simple-react-app-kit",
2026-07-26 23:21:33 +08:00
"version": "0.0.1",
"private": true,
"scripts": {
2026-07-30 15:50:51 +08:00
"build": "bun run --filter web build",
"check": "bun run format:check && bun run lint && bun run typecheck",
"dev": "bun run --filter web dev",
"format": "oxfmt apps packages package.json tsconfig.json .oxlintrc.json .oxfmtrc.json",
"format:check": "oxfmt --check apps packages package.json tsconfig.json .oxlintrc.json .oxfmtrc.json",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"typecheck": "bun run --workspaces typecheck"
2026-07-26 23:21:33 +08:00
},
"devDependencies": {
2026-07-30 15:50:51 +08:00
"oxfmt": "^0.61.0",
"oxlint": "^1.76.0",
2026-07-26 23:21:33 +08:00
"typescript": "~6"
},
"packageManager": "bun@1.3.5",
"engines": {
"node": ">=20"
},
"workspaces": [
"apps/*",
"packages/*"
]
}