-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 894 Bytes
/
package.json
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
29
{
"name": "bnkit",
"version": "0.5.20",
"main": "index.ts",
"devDependencies": {
"bun": "^1.1.21",
"bun-types": "^1.1.21",
"tsd": "^0.31.1",
"@biomejs/biome": "1.8.3"
},
"description": "Bun Nookit is a simple zero-dependency, fast, and lightweight toolkit for Bun",
"license": "MIT",
"scripts": {
"test": "bun test",
"test:watch": "bun test --watch --coverage",
"generate-types": "tsc -p tsconfig-types-gen.json",
"release": "LOCAL_RUN=true bun ./release.ts",
"tsc": "tsc --project tsconfig.json",
"tsc:noEmit": "tsc --noEmit --project tsconfig-noEmit.json",
"validate": "bun run tsc:noEmit && bun run test",
"format": "bunx @biomejs/biome format --write .",
"lint": "bunx @biomejs/biome lint .",
"check": "bunx @biomejs/biome check --apply ."
},
"bin": {
"bnkit": "sh ./scripts/cli.ts"
},
"dependencies": {}
}