Files
bknd/package.json
2025-01-07 07:05:45 +01:00

50 lines
1.5 KiB
JSON

{
"name": "bknd",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"test": "ALL_TESTS=1 bun test --bail",
"test:coverage": "bun test --coverage",
"types": "bun run --filter './packages/**' types",
"build": "bun run clean:dist && bun run --cwd app build:all && bun build:packages",
"build:packages": "bun run --filter './packages/{cli,plasmic}' build",
"git:pre-commit": "bun run test",
"lint": "bunx @biomejs/biome lint --changed .",
"updater": "bun x npm-check-updates -ui",
"clean:dist": "find packages -name 'dist' -type d -exec rm -rf {} +",
"ci": "find . -name 'node_modules' -type d -exec rm -rf {} + && bun install",
"npm:local": "verdaccio --config verdaccio.yml"
},
"dependencies": {},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@clack/prompts": "^0.7.0",
"@cloudflare/workers-types": "^4.20240620.0",
"@tsconfig/strictest": "^2.0.5",
"@types/lodash-es": "^4.17.12",
"bun-types": "^1.1.18",
"dotenv": "^16.4.5",
"esbuild": "^0.23.0",
"esbuild-plugin-tsc": "^0.4.0",
"miniflare": "^3.20240806.0",
"mitata": "^0.1.11",
"picocolors": "^1.0.1",
"semver": "^7.6.2",
"sql-formatter": "^15.3.2",
"tsd": "^0.31.1",
"tsup": "^8.1.0",
"typescript": "^5.5.3",
"verdaccio": "^5.32.1",
"wrangler": "^3.71.0"
},
"engines": {
"node": ">=20.0.0"
},
"workspaces": [
"app",
"docs",
"packages/*",
"examples/*"
]
}