forked from bknd-io/bknd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 772 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "bknd",
"private": true,
"sideEffects": false,
"type": "module",
"packageManager": "bun@1.3.3",
"engines": {
"node": ">=22.13"
},
"scripts": {
"updater": "bun x npm-check-updates -ui",
"ci": "find . -name 'node_modules' -type d -exec rm -rf {} + && bun install",
"npm:local": "verdaccio --config verdaccio.yml",
"format": "bunx biome format --write ./app",
"lint": "bunx biome lint --changed --write ./app"
},
"dependencies": {},
"devDependencies": {
"@biomejs/biome": "2.3.3",
"@tsconfig/strictest": "^2.0.7",
"@types/bun": "^1.3.1",
"@types/lodash-es": "^4.17.12",
"miniflare": "^3.20250718.2",
"typescript": "^5.9.3",
"verdaccio": "^6.2.1"
},
"workspaces": ["app", "packages/*"]
}