-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.23 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
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@andreashuber69/eslint-config",
"version": "2.1.1",
"description": "Provides a comprehensive, carefullly curated and tested shareable eslint config for TypeScript projects.",
"keywords": [
"eslint",
"eslintconfig",
"eslint-config",
"typescript"
],
"homepage": "https://github.com/andreashuber69/eslint-config/blob/master/README.md#----andreashuber69eslint-config",
"repository": {
"type": "git",
"url": "git+https://github.com/andreashuber69/eslint-config.git"
},
"bugs": {
"url": "https://github.com/andreashuber69/eslint-config/issues"
},
"license": "Unlicense",
"author": {
"name": "Andreas Huber"
},
"engines": {
"node": ">=18.18"
},
"type": "module",
"exports": {
".": {
"node": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"/dist/",
"!/**/*.map",
"/*.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prelint": "cspell '**' && markdownlint '**/*.md'",
"lint": "eslint",
"build": "tsc && vite build",
"test-no-coverage": "vitest --run",
"test": "vitest --run --coverage",
"show-coverage": "vite 'coverage/lcov-report' --logLevel error --open",
"ci": "npm run lint && npm run build && npm test",
"preversion": "jiti 'scripts/preversion.ts'",
"version": "jiti 'scripts/version.ts'",
"postversion": "jiti 'scripts/postversion.ts'",
"finish-release": "git flow release finish -p -m \"chore: finish release\" v`cat package.json | jq -r '.version'`"
},
"peerDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@stylistic/eslint-plugin": "^2.13.0",
"@types/eslint": "^9.6.1",
"@types/eslint__eslintrc": "^2.1.2",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.18.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.2",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-unicorn": "^56.0.1",
"jiti": "^2.4.2",
"typescript-eslint": "^8.21.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@stylistic/eslint-plugin": "^2.13.0",
"@tsconfig/strictest": "^2.0.5",
"@types/eslint": "^9.6.1",
"@types/eslint__eslintrc": "^2.1.2",
"@types/node-fetch": "^2.6.12",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"@vitest/coverage-istanbul": "^3.0.3",
"coveralls": "^3.1.1",
"cspell": "^8.17.2",
"eslint": "^9.18.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.2",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-unicorn": "^56.0.1",
"jiti": "^2.4.2",
"markdownlint-cli": "^0.43.0",
"node-fetch": "^2.7.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"vite": "^6.0.11",
"vite-plugin-dts": "^4.5.0",
"vitest": "^3.0.3"
}
}