-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.11 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
{
"name": "@oxlint/migrate",
"version": "0.16.0",
"description": "Generates a `.oxlintrc.json` from a existing eslint flat config",
"type": "module",
"bin": {
"@oxlint/migrate": "./dist/bin/oxlint-migrate.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/oxc-project/oxlint-migrate"
},
"scripts": {
"prepare": "husky",
"generate": "node --import @oxc-node/core/register ./scripts/generate.ts",
"format": "npx prettier --write .",
"type-check": "tsc --noEmit",
"lint": "oxlint",
"test": "vitest",
"build": "vite build",
"manual-test": "pnpm build; chmod +x dist/bin/oxlint-migrate.mjs; npx ."
},
"files": [
"dist/*",
"README.md"
],
"keywords": [
"oxc",
"oxlint",
"eslint",
"rules"
],
"author": "Sysix <[email protected]>",
"license": "MIT",
"devDependencies": {
"@antfu/eslint-config": "^4.2.0",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.20.0",
"@logux/eslint-config": "^55.0.0",
"@oxc-node/core": "^0.0.21",
"@stylistic/eslint-plugin": "^4.0.1",
"@stylistic/eslint-plugin-ts": "^4.0.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^22.13.4",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"@vitest/coverage-v8": "^3.0.5",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint-plugin-local": "^6.0.0",
"eslint-plugin-oxlint": "^0.16.0",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-unicorn": "^57.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"oxlint": "^0.16.0",
"prettier": "^3.5.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0",
"vitest": "^3.0.5"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"commander": "^13.1.0",
"globals": "^16.0.0"
},
"packageManager": "[email protected]"
}