-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.62 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
{
"name": "sfcsplit-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 --ignore-path .gitignore '**/*.{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/sfcsplit run dts-buddy",
"generate:docs": "node scripts/generate-api-docs.js",
"release": "pnpm changeset publish",
"prepare": "husky install",
"bench": "pnpm --dir packages/sfcsplit run bench"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"dts-buddy": "^0.4.3",
"esbuild": "^0.19.11",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-n": "^16.6.1",
"eslint-plugin-prettier": "^5.1.2",
"get-tsconfig": "^4.7.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"publint": "^0.2.7",
"tiny-glob": "^0.2.9",
"vitest": "^1.1.1"
},
"lint-staged": {
"*.{js,md}": "eslint --cache --fix",
"*": "prettier --cache --ignore-path .prettierignore --ignore-unknown --write"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18 || >=20"
}
}