-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.63 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.63 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
{
"name": "@rut-toolkit/root",
"version": "0.0.0",
"type": "module",
"private": true,
"packageManager": "pnpm@10.33.0",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build --filter=./packages/*",
"clean": "turbo run clean --filter=./packages/*",
"clean:all": "pnpm clean && shx rm -rf node_modules",
"format": "biome format . --write",
"lint": "biome check . --error-on-warnings",
"lint:fix": "biome check . --fix --unsafe",
"lint:dependencies": "knip --strict",
"lint:spell": "cspell . --color",
"lint:types": "turbo lint:types --filter=./packages/*",
"lint:packages": "turbo lint:package --filter=./packages/*",
"test": "turbo test --continue --filter=./packages/*",
"test:coverage": "turbo test:coverage --filter=./packages/*",
"typecheck": "turbo typecheck --filter=./packages/*",
"size": "turbo size --filter=./packages/*",
"size:json": "turbo size:json --filter=./packages/*",
"changeset": "changeset",
"ci:version": "changeset version",
"ci:release": "changeset publish --access public",
"prepare": "husky"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@biomejs/biome": "2.4.10",
"@changesets/changelog-github": "0.6.0",
"@changesets/cli": "2.30.0",
"@size-limit/preset-small-lib": "12.0.1",
"@vitest/coverage-v8": "catalog:vitest",
"cspell": "10.0.0",
"husky": "9.1.7",
"knip": "6.3.0",
"publint": "0.3.18",
"rollup-plugin-visualizer": "7.0.1",
"shx": "0.4.0",
"size-limit": "12.0.1",
"turbo": "2.9.6",
"vitest": "catalog:vitest"
}
}