-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.07 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.07 KB
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-plugin-devup",
"version": "2.0.17",
"description": "eslint plugin for devup",
"main": "dist/index.cjs",
"type": "module",
"scripts": {
"test": "bun test",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"build": "tsc && bun build --target node src/index.ts --production --outfile dist/index.cjs --format cjs --packages external && bun build --target node src/index.ts --production --outfile dist/index.mjs --format esm --packages external && bun build --target node src/oxlint.ts --production --outfile dist/oxlint.mjs --format esm --packages external && cp dist/index.d.ts dist/index.d.cts",
"prepare": "bun run husky"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
},
"./oxlint": {
"import": "./dist/oxlint.mjs",
"default": "./dist/oxlint.mjs"
},
"./oxlintrc": "./oxlintrc.json"
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"oxlintrc.json"
],
"keywords": [
"eslint"
],
"author": "devfive",
"license": "ISC",
"dependencies": {
"@devup-ui/eslint-plugin": ">=1.0",
"@eslint/js": ">=9.39",
"@tanstack/eslint-plugin-query": ">=5",
"eslint": ">=9.39",
"eslint-config-prettier": ">=10",
"eslint-plugin-mdx": ">=3",
"eslint-plugin-prettier": ">=5",
"eslint-plugin-react": ">=7",
"eslint-plugin-react-hooks": ">=7",
"eslint-plugin-simple-import-sort": ">=12",
"eslint-plugin-unused-imports": ">=4",
"prettier": ">=3",
"typescript-eslint": ">=8.53"
},
"peerDependencies": {
"eslint": "*"
},
"devDependencies": {
"@changesets/cli": "^2.29",
"@types/bun": "^1.3",
"@types/eslint": "^9.6",
"@typescript-eslint/rule-tester": "^8.53",
"@typescript-eslint/utils": "^8.53",
"eslint-plugin-eslint-plugin": "^7.3",
"husky": "^9.1",
"oxlint": "^1.41.0",
"typescript": "^5.9",
"vite": "^7.3",
"vite-plugin-dts": "^4.5"
}
}