-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
79 lines (79 loc) · 1.81 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
{
"name": "@uni-helper/eslint-config",
"type": "module",
"version": "0.3.0",
"packageManager": "[email protected]",
"description": "Uni Helper's ESLint config",
"author": "KeJun",
"license": "MIT",
"homepage": "https://github.com/uni-helper/eslint-config#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/uni-helper/eslint-config.git"
},
"bugs": "https://github.com/uni-helper/eslint-config/issues",
"keywords": [
"eslint-config"
],
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"prepublishOnly": "pnpm build",
"release": "bumpp",
"start": "esno src/index.ts",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"peerDependencies": {
"@antfu/eslint-config": "^3.13.0",
"eslint": "^9.10.0"
},
"dependencies": {
"@antfu/eslint-config": "^3.14.0",
"@eslint/eslintrc": "^3.2.0",
"eslint-flat-config-utils": "^1.0.0",
"local-pkg": "^1.0.0"
},
"devDependencies": {
"@types/eslint__eslintrc": "^2.1.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.6",
"bumpp": "^9.10.0",
"eslint": "^9.18.0",
"esno": "^4.8.0",
"execa": "^9.5.2",
"fast-glob": "^3.3.3",
"fs-extra": "^11.2.0",
"typescript": "^5.7.3",
"unbuild": "^3.3.1",
"vitest": "^2.1.8"
}
}