-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 867 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 867 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
{
"name": "wuchale",
"type": "module",
"private": true,
"scripts": {
"clean": "rm -rf packages/*/dist packages/*/*.tsbuildinfo",
"dev": "npm run clean; tsc --build tsconfig.build.json --watch",
"build": "tsc --build tsconfig.build.json --sourceMap false --declarationMap false",
"typecheck": "npm exec --workspaces tsc -- --noEmit",
"test": "npm run test --workspaces",
"check": "npm run typecheck && npm run test",
"fmt": "npx @biomejs/biome check --write",
"v": "npx changeset",
"postinstall": "ln -fs ../../scripts/pre-commit .git/hooks/pre-commit"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@changesets/cli": "^2.30.0",
"@svitejs/changesets-changelog-github-compact": "^1.2.0"
}
}