-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
53 lines (53 loc) · 1.75 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
{
"name": "tsconfck-monorepo",
"private": true,
"type": "module",
"scripts": {
"test": "pnpm -r test",
"check": "run-p -c check:*",
"check:publint": "pnpm --filter \"./packages/*\" --parallel check:publint",
"check:types": "pnpm --filter \"./packages/*\" --parallel check:types",
"check:lint": "eslint --cache '**/*.{js,md}'",
"check:format": "prettier --cache --ignore-path .gitignore --ignore-path .prettierignore --ignore-unknown --check .",
"lint": "pnpm check:lint --fix",
"format": "pnpm check:format --write",
"fixup": "run-s generate lint format",
"generate": "run-s generate:types generate:docs",
"generate:types": "pnpm --dir packages/tsconfck run dts-buddy -m tsconfck:src/public.d.ts",
"generate:docs": "node scripts/generate-api-docs.js",
"release": "pnpm changeset publish",
"prepare": "husky",
"bench": "node --expose-gc -max-old-space-size=4096 scripts/bench.js"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@eslint/js": "^9.18.0",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"dts-buddy": "^0.5.4",
"esbuild": "^0.24.2",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-prettier": "^5.2.3",
"get-tsconfig": "^4.10.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"npm-run-all2": "^7.0.2",
"prettier": "^3.4.2",
"publint": "^0.3.2",
"tiny-glob": "^0.2.9",
"tinybench": "^3.1.0",
"tsconfck": "workspace:^",
"tsconfck-2": "npm:tsconfck@^2.1.2",
"vitest": "^3.0.3"
},
"lint-staged": {
"*.{js,md}": "eslint --cache --fix",
"*": "prettier --cache --ignore-path .prettierignore --ignore-unknown --write"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18 || >=20"
}
}