-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 959 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 959 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
29
30
31
32
33
34
35
36
{
"name": "bunnativekit",
"private": true,
"license": "MIT",
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"check-types": "turbo run check-types",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"docs": "bun --bun ./node_modules/.bin/typedoc --options typedoc.config.ts",
"docs:watch": "bun --bun ./node_modules/.bin/typedoc --options typedoc.config.ts --watch",
"pub:publish": "bun run ./scripts/publish.ts",
"pub:version": "bun run ./scripts/version.ts",
"pub": "bun run pub:version && bun run pub:publish"
},
"devDependencies": {
"prettier": "^3.6.0",
"turbo": "^2.6.3",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.7.2"
},
"packageManager": "bun@1.3.2",
"workspaces": [
"apps/*",
"packages/*",
"internal/*",
"tools/*"
],
"dependencies": {
"@types/bun": "^1.3.4"
}
}