-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.37 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.37 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
57
{
"name": "nitpicker-monorepo",
"description": "Web site data acquisition and analysis toolkit",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/d-zero-dev/nitpicker.git"
},
"private": true,
"type": "module",
"scripts": {
"cli": "./packages/@nitpicker/cli/bin/nitpicker.js",
"build": "lerna run build",
"dev": "lerna run dev",
"test": "vitest run --test-timeout 60000",
"lint": "run-s lint:eslint lint:prettier lint:textlint lint:cspell",
"lint:check": "run-s lint:eslint:check lint:prettier:check lint:textlint:check lint:cspell",
"lint:cspell": "npx cspell --no-progress --show-suggestions \"**\"",
"lint:eslint": "npx eslint --fix \"./{*,packages/**/src/{*,**/*}}.{ts,js,cjs,mjs}\"",
"lint:eslint:check": "npx eslint \"./{*,packages/**/src/{*,**/*}}.{ts,js,cjs,mjs}\"",
"lint:prettier": "npx prettier --write \"{*,./**/*}{.{md,mdc,mdx,js,jsx,ts,tsx,css,pug,html,json,yaml},*rc}\" \"!**/dist/**/*\"",
"lint:prettier:check": "npx prettier --check \"{*,./**/*}{.{md,mdc,mdx,js,jsx,ts,tsx,css,pug,html,json,yaml},*rc}\" \"!**/dist/**/*\"",
"lint:textlint": "npx textlint --fix \"{*,./**/*}.{md,mdc}\" && npx textlint \"{*,./**/*}.{md,mdc}\"",
"lint:textlint:check": "npx textlint \"{*,./**/*}.{md,mdc}\"",
"release": "lerna version --exact --conventional-commits --conventional-graduate --no-push",
"release:alpha": "lerna version --exact --force-publish --conventional-commits --conventional-prerelease --preid alpha --no-push",
"release:beta": "lerna version --exact --force-publish --conventional-commits --conventional-prerelease --preid beta --no-push",
"release:rc": "lerna version --exact --force-publish --conventional-commits --conventional-prerelease --preid rc --no-push",
"postinstall": "husky",
"commit": "npx cz",
"co": "npx cz",
"update": "yarn upgrade-interactive"
},
"workspaces": [
"packages/@nitpicker/cli",
"packages/@nitpicker/*",
"packages/test-server"
],
"devDependencies": {
"@d-zero/cspell-config": "5.0.0",
"@d-zero/eslint-config": "5.0.0",
"@d-zero/lint-staged-config": "5.0.0",
"@d-zero/prettier-config": "5.0.0",
"@d-zero/textlint-config": "5.0.0",
"@d-zero/tsconfig": "1.0.0",
"husky": "9.1.7",
"lerna": "9.0.4",
"npm-run-all2": "8.0.4",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"packageManager": "yarn@4.12.0",
"volta": {
"node": "24.13.1",
"yarn": "4.12.0"
}
}