@jay-es/oxlint-config 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +90 -0
- package/dist/eslint-all.js +188 -0
- package/dist/eslint-recommended.js +66 -0
- package/dist/index.d.mts +20 -0
- package/dist/index.mjs +86 -0
- package/dist/typescript-all.js +151 -0
- package/dist/typescript-disable-type-checked.js +63 -0
- package/dist/typescript-eslint-recommended.js +25 -0
- package/dist/typescript-recommended-type-checked-only.js +52 -0
- package/dist/typescript-recommended-type-checked.js +72 -0
- package/dist/typescript-recommended.js +45 -0
- package/dist/typescript-strict-type-checked-only.js +91 -0
- package/dist/typescript-strict-type-checked.js +124 -0
- package/dist/typescript-strict.js +58 -0
- package/dist/typescript-stylistic-type-checked-only.js +33 -0
- package/dist/typescript-stylistic-type-checked.js +46 -0
- package/dist/typescript-stylistic.js +38 -0
- package/package.json +53 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jay-es/oxlint-config",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "oxlint configs generated from ESLint's official recommended/all configs, filtered to rules oxlint supports.",
|
|
5
|
+
"homepage": "https://github.com/jay-es/oxlint-config#readme",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/jay-es/oxlint-config/issues"
|
|
8
|
+
},
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"author": "jay-es",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/jay-es/oxlint-config.git"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"type": "module",
|
|
19
|
+
"exports": {
|
|
20
|
+
".": "./dist/index.mjs",
|
|
21
|
+
"./*": "./dist/*.js",
|
|
22
|
+
"./package.json": "./package.json"
|
|
23
|
+
},
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@eslint/js": "^10.0.1",
|
|
29
|
+
"@types/node": "^25.6.2",
|
|
30
|
+
"@typescript/native-preview": "7.0.0-dev.20260509.2",
|
|
31
|
+
"bumpp": "^11.1.0",
|
|
32
|
+
"oxlint": "^1.72.0",
|
|
33
|
+
"typescript": "^6.0.3",
|
|
34
|
+
"typescript-eslint": "^8.62.1",
|
|
35
|
+
"vite-plus": "^0.1.20"
|
|
36
|
+
},
|
|
37
|
+
"peerDependencies": {
|
|
38
|
+
"oxlint": "*"
|
|
39
|
+
},
|
|
40
|
+
"peerDependenciesMeta": {
|
|
41
|
+
"oxlint": {
|
|
42
|
+
"optional": true
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"scripts": {
|
|
46
|
+
"build": "vp pack",
|
|
47
|
+
"dev": "vp pack --watch",
|
|
48
|
+
"test": "vp test",
|
|
49
|
+
"check": "vp check",
|
|
50
|
+
"generate": "node scripts/generate.ts",
|
|
51
|
+
"postbuild": "pnpm run generate"
|
|
52
|
+
}
|
|
53
|
+
}
|