-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.51 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"version": "4.0.0-beta.11",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "pnpm -r --parallel --filter './packages/**' build",
"clean": "pnpm -r --parallel --filter './packages/**' clean",
"clean:cache": "pnpm store prune",
"clean:modules": "find . -name \"node_modules\" -type d -prune -exec rm -rf {} +",
"clean:modules:trash": "find . -name \"node_modules\" -type d -prune -exec trash {} +",
"regen": "rm -rf pnpm-lock.yaml && pnpm clean:modules && corepack use pnpm@latest",
"build:version": "pnpm -r --parallel --filter './packages/**' exec node ../../scripts/version.js",
"changeset:version": "changeset version && pnpm build:version && pnpm install --lockfile-only && pnpm check:write",
"changeset:prepublish": "pnpm build && pnpm -r --parallel build:prerelease",
"changeset:publish": "pnpm changeset:prepublish && pnpm --config.verify-deps-before-run=false changeset publish",
"check": "biome check",
"check:write": "biome check --write",
"check:write:unsafe": "biome check --write --unsafe",
"check:types": "pnpm -r --parallel check:types",
"check:circular-deps": "pnpm -r --parallel check:circular-deps",
"test": "pnpm -r --parallel test",
"test:cov": "pnpm -r --parallel test:cov",
"test:unit": "pnpm -r --parallel test:unit",
"link:all": "pnpm -r exec pnpm link --global",
"unlink:all": "pnpm -r exec pnpm unlink --global",
"link:bigmi": "pnpm -r --parallel link:bigmi",
"unlink:bigmi": "pnpm -r --parallel unlink:bigmi",
"knip:all": "knip",
"knip:check": "knip --dependencies --files --no-config-hints --exclude binaries",
"knip:write": "pnpm knip:check --fix",
"pre-commit": "pnpm check && pnpm check:types && pnpm check:circular-deps && pnpm knip:check",
"pre-push": "pnpm test:unit",
"prepare": "husky",
"postinstall": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.5.14",
"@changesets/changelog-github": "^1.0.1",
"@changesets/cli": "^3.0.3",
"@commitlint/cli": "^21.2.3",
"@commitlint/config-conventional": "^21.2.3",
"@types/node": "^26.6.2",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^5.0.1",
"husky": "^9.1.7",
"knip": "^6.37.0",
"tsdown": "^0.23.0",
"typescript": "^7.0.2",
"vitest": "^5.0.1"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@12.5.1+sha512.e3f305bc784a2bc89f5ad3b6138889470fae8d2af5f36b61216ec91c2c3d64089775f9de38aac331044ea40f245cb0d5666392dfdf65824e1907ef6a2c62de5f"
}