-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.86 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
{
"name": "eslint-config-ted",
"version": "4.0.8",
"description": "Ted's Eslint Rules",
"type": "module",
"keywords": [
"eslint",
"vue",
"react",
"typescript",
"config"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/preflower/eslint-config/issues"
},
"repository": "https://github.com/preflower/eslint-config",
"author": "Ted Lin <[email protected]> (https://github.com/preflower)",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"publishConfig": {
"access": "public"
},
"typings": "lib/index.d.ts",
"scripts": {
"prepare": "husky install",
"lint": "eslint --flag unstable_ts_config .",
"build": "tsup",
"ci:version": "pnpm changeset version && pnpm install --lockfile-only",
"ci:publish": "pnpm build && pnpm changeset publish"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"peerDependencies": {
"eslint": "^8.56.0 || ^9.0.0"
},
"dependencies": {
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsonc": "^2.18.2",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"jsonc-eslint-parser": "^2.4.0",
"typescript-eslint": "^8.19.0",
"vue-eslint-parser": "^9.4.3"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/config-inspector": "^0.7.1",
"@types/eslint": "^9.6.1",
"@types/react": "^18.3.18",
"eslint": "^9.16.0",
"husky": "^9.1.7",
"react": "^18.3.1",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"vue": "^3.5.13"
}
}