-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.11 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.11 KB
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
{
"name": "clickvoidx",
"private": true,
"packageManager": "bun@1.3.6",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"lint": "cd packages/core && bun run lint",
"lint:fix": "cd packages/core && bun run lint:fix",
"typecheck": "cd packages/core && bun run typecheck",
"build": "cd packages/core && bun run build",
"test": "cd packages/core && bun run test",
"test:ci": "cd packages/core && bun run test:ci",
"check": "bun run lint && bun run typecheck && bun run build && bun run test",
"changeset:add": "changeset",
"version-packages": "changeset version",
"release:publish": "bun ./scripts/release-publish.mjs",
"release:dry-run": "bun ./scripts/release-publish.mjs --dry-run",
"example:react": "cd examples/react-latest && bun run dev",
"example:react:typecheck": "cd examples/react-latest && bun run typecheck",
"example:react:build": "cd examples/react-latest && bun run build",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"husky": "^9.1.7",
"oxlint": "^1.57.0",
"typescript": "^5.9.3"
}
}