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
27 lines (27 loc) · 729 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 729 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
{
"name": "bknd",
"private": true,
"sideEffects": false,
"type": "module",
"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 ./app"
},
"dependencies": {},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tsconfig/strictest": "^2.0.5",
"@types/lodash-es": "^4.17.12",
"bun-types": "^1.1.18",
"miniflare": "^3.20240806.0",
"typescript": "^5.5.3",
"verdaccio": "^5.32.1"
},
"engines": {
"node": ">=22"
},
"workspaces": ["app", "packages/*"]
}