-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
56 lines (56 loc) · 1.58 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
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
{
"name": "root",
"private": true,
"license": "MIT",
"scripts": {
"build": "turbo run build",
"build:doc": "typedoc",
"check": "biome check .",
"clean": "turbo run clean",
"coverage": "turbo run coverage",
"cs": "changeset",
"depcheck": "turbo run depcheck",
"format": "biome format .",
"k": "pnpm --filter ./packages/kind",
"lint": "run-p lint:*",
"lint:biome": "biome lint .",
"lint:eslint": "eslint .",
"nuke": "turbo run nuke && pnpm nuke:local",
"nuke:local": "rimraf node_modules",
"prepare": "husky",
"release": "changeset publish",
"size": "turbo run size",
"test": "turbo run test",
"test:type": "turbo run test:type",
"ttp": "turbo --filter type-plus",
"tp": "pnpm --filter type-plus",
"verify": "run-p check verify:turbo",
"verify:turbo": "turbo run test:type build build:doc depcheck coverage size",
"version": "changeset version",
"web": "pnpm --filter website"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.25.2",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@repobuddy/biome": "^1.5.1",
"eslint": "^9.10.0",
"eslint-plugin-yml": "~1.16.0",
"globals": "^15.9.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-watch-suspend": "^1.1.2",
"jest-watch-toggle-config-2": "^2.1.0",
"jest-watch-typeahead": "^2.2.2",
"npm-check-updates": "^17.0.0",
"npm-run-all2": "^7.0.0",
"rimraf": "^6.0.0",
"ts-jest": "^29.1.2",
"turbo": "2.3.3",
"typedoc": "^0.27.0",
"typedoc-plugin-extras": "^3.0.0",
"typescript": "^5.6.2"
},
"packageManager": "[email protected]"
}