-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.03 KB
/
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
30
{
"name": "@bunicorn/root",
"type": "module",
"private": true,
"scripts": {
"dev": "lerna run dev --stream",
"build": "lerna run build --stream",
"deps:update": "ncu -u -p bun --peer && lerna run deps:update --stream",
"prepublish": "bun run lint:fix && bun run build && bun run test",
"publish": "lerna publish --no-private",
"dev:example": "lerna run example:dev --scope @bunicorn/example",
"start:example": "lerna run example:start --scope @bunicorn/example",
"docs:dev": "npm run docs:dev --workspace @bunicorn/docs",
"docs:build": "npm run docs:build --workspace @bunicorn/docs",
"docs:preview": "npm run docs:preview --workspace @bunicorn/docs",
"test": "bun test",
"test:watch": "bun test --watch",
"pretest": "bun run build",
"lint:fix": "biome check --write"
},
"workspaces": ["packages/*", "example", "docs", "tests"],
"devDependencies": {
"@biomejs/biome": "1.9.3",
"bun-types": "^1.1.30",
"lerna": "^8.1.8",
"npm-check-updates": "^17.1.3",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]"
}