-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 788 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 788 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
{
"name": "begit",
"private": true,
"version": "0.0.1",
"license": "MIT",
"scripts": {
"build": "turbo run build",
"start": "turbo run build && node packages/cli/dist/index.js",
"test": "turbo run test",
"release": "pnpm build && changeset publish",
"format": "biome format ./packages --write",
"lint": "biome lint ./packages",
"generate:readme": "jiti ./scripts/generateReadme.ts",
"update-deps": "ncu -u --packageFile packages/**/package.json"
},
"keywords": [],
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@biomejs/biome": "^2.4.2",
"@changesets/cli": "^2.29.8",
"@types/node": "^25.2.3",
"jiti": "^2.6.1",
"tsup": "^8.5.1",
"turbo": "^2.8.10",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.30.0"
}