generated from tksst/typescript-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.69 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
86
87
88
89
90
91
92
93
94
{
"name": "@tksst/eslint-config",
"version": "14.0.0",
"description": "My personal ESLint config",
"publishConfig": {
"access": "public",
"provenance": true
},
"homepage": "https://github.com/tksst/eslint-config",
"repository": "github:tksst/eslint-config",
"license": "Apache-2.0",
"author": {
"name": "Takashi Sato",
"email": "[email protected]",
"url": "https://www.tks.st/"
},
"type": "module",
"exports": {
"import": "./dist/lib/index.js",
"require": "./dist/lib/index.cjs"
},
"scripts": {
"clean": "tss-rmrf ./dist/",
"_eslint": "eslint --color .",
"_eslint-fix": "pnpm _eslint --fix",
"build": "run-s --continue-on-error clean build:*",
"build:lib": "tsup --config ./tsup.config.lib.mjs",
"prepack": "pnpm build",
"watch": "npm-run-all clean --parallel --continue-on-error --print-label watch:*",
"watch:lib": "pnpm build:lib --watch",
"fix": "run-s --continue-on-error fix:*",
"fix:prettier": "pnpm lint:prettier --write",
"fix:eslint": "run-s build _eslint-fix",
"lint": "run-p --continue-on-error --print-label lint:*",
"lint:prettier": "prettier --cache --check .",
"lint:eslint": "run-s build _eslint",
"lint:secretlint": "secretlint --maskSecrets **",
"lint:tsc": "tsc --noEmit",
"test": "run-s test:*",
"test:unit": "vitest run --coverage",
"prepare": "husky"
},
"dependencies": {
"@eslint/js": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-redos": "4.4.5",
"eslint-plugin-regexp": "2.7.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unicorn": "56.0.0",
"globals": "15.12.0",
"typescript-eslint": "8.15.0"
},
"devDependencies": {
"@changesets/cli": "2.27.10",
"@secretlint/secretlint-rule-preset-recommend": "9.0.0",
"@tksst/prettier-config": "1.1.0",
"@tksst/project-configs": "4.0.1",
"@types/eslint": "9.6.1",
"@types/eslint-config-prettier": "6.11.3",
"@types/eslint__js": "8.42.3",
"@types/node": "18.19.64",
"@vitest/coverage-v8": "2.1.5",
"better-typescript-lib": "2.9.0",
"eslint": "9.15.0",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"npm-run-all2": "7.0.1",
"prettier": "3.3.3",
"secretlint": "9.0.0",
"tsup": "8.3.5",
"typescript": "5.6.3",
"vitest": "2.1.5"
},
"peerDependencies": {
"eslint": "^8.56.0 || ^9.0.0",
"typescript": ">=4.7.4"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.18.0 || >=20"
},
"lint-staged": {
"*": [
"prettier --cache --check",
"secretlint"
]
}
}