-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.09 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
{
"name": "@uneva/eslint",
"type": "module",
"version": "2.1.0",
"description": "Flat ESLint Configs",
"author": "MaggotCode <[email protected]> (https://github.com/maggot-code)",
"homepage": "https://github.com/uneva/eslint",
"license": "MIT",
"keywords": [
"eslint",
"eslint-config"
],
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"build:min": "tsup --minify",
"dev": "tsup --watch & eslint --inspect-config",
"watch": "tsup --watch",
"preview": "eslint --inspect-config",
"preview:build": "pnpm build:min && npx @eslint/config-inspector build",
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"release": "bumpp && pnpm publish",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/eslint": "^9.6.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.12.0",
"bumpp": "^10.0.1",
"eslint": "^9.19.0",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"vue": "^3.5.13"
},
"dependencies": {
"@stylistic/eslint-plugin": "^3.0.1",
"@typescript-eslint/parser": "^8.22.0",
"eslint-merge-processors": "^1.0.0",
"eslint-plugin-antfu": "^3.0.0",
"eslint-plugin-command": "^3.0.0",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint-plugin-jsonc": "^2.19.1",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vue": "^9.32.0",
"eslint-processor-vue-blocks": "^1.0.0",
"globals": "^15.14.0",
"jsonc-eslint-parser": "^2.4.0",
"local-pkg": "^1.0.0",
"typescript-eslint": "^8.22.0",
"vue-eslint-parser": "^9.4.3"
}
}