generated from kurone-kito/yarn-project-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 3.12 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@kurone-kito/lints-config",
"version": "0.17.3",
"private": true,
"description": "My configuration for the ESLint / Prettier / TypeScript",
"keywords": [
"config",
"cspell",
"eslint",
"eslintconfig",
"lint-staged",
"markdownlint",
"prettier",
"typescript"
],
"homepage": "https://github.com/kurone-kito/lints-config#readme",
"bugs": "https://github.com/kurone-kito/lints-config/issues",
"repository": "github:kurone-kito/lints-config",
"license": "MIT",
"author": "kurone-kito <krone@kit.black> (https://kit.black/)",
"type": "module",
"files": [],
"workspaces": {
"packages": [
"./packages/*"
]
},
"scripts": {
"build": "pnpm run -r build",
"clean": "pnpm run --no-bail \"/^clean:.+/\"",
"clean:root": "rimraf -g \"*.tgz\" \"*.tsbuildinfo\" node_modules/.cache",
"clean:sub": "pnpm run --parallel -r clean",
"prepare": "husky",
"lint": "pnpm run \"/^lint:.+:check/\"",
"lint:cspell:check": "cspell lint --no-progress --show-suggestions -u \"./**/*\"",
"lint:eslint:check": "eslint --cache --cache-location node_modules/.cache/eslint/ --cache-strategy=content -f codeframe \"./**/*\"",
"lint:eslint:fix": "pnpm run lint:eslint:check --fix",
"lint:fix": "pnpm run \"lint:cspell:check\" && pnpm run \"/^lint:.+:fix/\"",
"lint:markdown:check": "markdownlint-cli2 \"**/*.md\"",
"lint:markdown:fix": "markdownlint-cli2 --fix \"**/*.md\"",
"lint:oxlint:check": "oxlint",
"lint:oxlint:fix": "oxlint --fix",
"lint:prettier:check": "pnpm run prettier -cu",
"lint:prettier:fix": "pnpm run prettier -uw",
"prettier": "prettier --cache --log-level=warn \"./**/*\"",
"publish": "pnpm -r publish",
"publish:next": "pnpm -r publish --tag next",
"test": "pnpm run lint"
},
"prettier": "@kurone-kito/prettier-config",
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@cspell/cspell-types": "^8.16.1",
"@kurone-kito/commitlint-config": "workspace:^",
"@kurone-kito/cspell-config": "workspace:^",
"@kurone-kito/eslint-config-base": "workspace:^",
"@kurone-kito/eslint-config-react": "workspace:^",
"@kurone-kito/eslint-config-solid": "workspace:^",
"@kurone-kito/lint-staged-config": "workspace:^",
"@kurone-kito/markdownlint-config": "workspace:^",
"@kurone-kito/prettier-config": "workspace:^",
"@kurone-kito/typescript-config": "workspace:^",
"@types/eslint": "^9.6.1",
"@typescript-eslint/parser": "^8.18.0",
"cspell": "^8.16.1",
"eslint": "^9.17.0",
"eslint-formatter-codeframe": "^7.32.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"markdownlint-cli2": "^0.16.0",
"oxlint": "^0.15.2",
"prettier": "^3.4.2",
"rimraf": "^5.0.10",
"typescript": "~5.7.2",
"typescript-eslint-language-service": "^5.0.5"
},
"packageManager": "pnpm@9.15.0+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c",
"engines": {
"node": "^18.20 || ^20.10 || >=22"
},
"publishConfig": {
"access": "public"
}
}