-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 4.15 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@goodbyenjn/eslint-config",
"version": "4.0.0",
"description": "GoodbyeNJN's eslint config",
"keywords": [
"eslint",
"eslintrc",
"eslintconfig",
"config",
"javascript",
"styleguide",
"react",
"typescript"
],
"homepage": "https://github.com/GoodbyeNJN/eslint-config",
"bugs": {
"url": "https://github.com/GoodbyeNJN/eslint-config/issues"
},
"license": "MIT",
"author": "GoodbyeNJN <cc@fuckwall.cc>",
"repository": {
"type": "git",
"url": "git+https://github.com/GoodbyeNJN/eslint-config.git"
},
"type": "module",
"module": "./dist/esm/index.mjs",
"main": "./dist/cjs/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
},
"./prettier": {
"types": "./dist/prettier.d.ts",
"import": "./dist/esm/prettier.mjs",
"require": "./dist/cjs/prettier.cjs"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/*"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin esbuild",
"test": "vitest",
"test:ci": "vitest run",
"publish:ci": "npm publish --access public"
},
"devDependencies": {
"@antfu/eslint-define-config": "1.23.0-2",
"@goodbyenjn/eslint-config": "file:",
"@oxc-resolver/binding-wasm32-wasi": "3.0.3",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@types/node": "^22.10.7",
"@typescript-eslint/eslint-plugin": "8.20.0",
"@typescript-eslint/parser": "8.20.0",
"eslint": "^9.18.0",
"eslint-config-alloy": "5.1.2",
"eslint-config-flat-gitignore": "1.0.0",
"eslint-import-resolver-oxc": "0.8.0",
"eslint-plugin-import-x": "4.6.1",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-vue": "9.32.0",
"fast-glob": "^3.3.3",
"globals": "15.14.0",
"local-pkg": "1.0.0",
"prettier": "^3.4.2",
"remeda": "^2.19.2",
"rollup": "^4.30.1",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"typescript": "^5.7.3",
"vitest": "^3.0.2",
"vue-eslint-parser": "9.4.3",
"zx": "^8.3.0"
},
"peerDependencies": {
"eslint": "^9.0.0 || ^8.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=16"
},
"pnpm": {
"patchedDependencies": {
"@antfu/eslint-define-config": "patches/@antfu__eslint-define-config.patch",
"eslint-config-alloy": "patches/eslint-config-alloy.patch",
"eslint-plugin-vue": "patches/eslint-plugin-vue.patch"
},
"overrides": {
"oxc-resolver": "file:./modules/oxc-resolver",
"array-includes": "npm:@nolyfill/array-includes@^1",
"array.prototype.findlast": "npm:@nolyfill/array.prototype.findlast@^1",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@^1",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@^1",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@^1",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@^1",
"hasown": "npm:@nolyfill/hasown@^1",
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"object.assign": "npm:@nolyfill/object.assign@^1",
"object.entries": "npm:@nolyfill/object.entries@^1",
"object.fromentries": "npm:@nolyfill/object.fromentries@^1",
"object.values": "npm:@nolyfill/object.values@^1",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1"
}
}
}