-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.95 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "eslint-config-un",
"version": "0.3.1",
"description": "A universal-ish ESLint config aiming to be reasonably strict and easily configurable.",
"keywords": [
"eslint",
"eslint-config"
],
"homepage": "https://github.com/andreww2012/eslint-plugin-un",
"bugs": {
"url": "https://github.com/andreww2012/eslint-plugin-un/issues/new"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreww2012/eslint-plugin-un.git"
},
"license": "MIT",
"author": "andreww2012",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"typegen": "tsx scripts/typegen.ts",
"build": "pnpm typegen && tsup --format esm,cjs --clean --dts",
"format:check": "prettier --check '**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts,vue}'",
"format:fix": "prettier --write '**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts,vue}'",
"eslint:inspect": "npx @eslint/config-inspector --open false",
"lint:eslint": "eslint --flag unstable_ts_config --cache",
"lint:eslint:fix": "npm run lint:eslint -- --fix",
"lint:types": "tsc --noEmit",
"lint": "npm run lint:types && npm run format:check && npm run lint:eslint",
"lint:fix": "npm run format:fix && npm run lint:eslint:fix",
"test": "npm run typegen && npm run lint",
"prepublishOnly": "npm run test && npm run build"
},
"dependencies": {
"@antfu/utils": "0.7.10",
"@eslint-community/eslint-plugin-eslint-comments": "4.4.1",
"@eslint/markdown": "6.2.1",
"@stylistic/eslint-plugin": "^2.12.1",
"@typescript-eslint/parser": "^8.19.1",
"@vitest/eslint-plugin": "1.1.24",
"eslint-config-flat-gitignore": "^0.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-merge-processors": "0.1.0",
"eslint-plugin-css": "0.11.0",
"eslint-plugin-disable-autofix": "^5.0.1",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-jest": "28.10.0",
"eslint-plugin-jest-extended": "2.4.0",
"eslint-plugin-jsdoc": "50.6.1",
"eslint-plugin-jsonc": "2.18.2",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-no-type-assertion": "^1.3.0",
"eslint-plugin-package-json": "0.19.0",
"eslint-plugin-pinia": "^0.4.1",
"eslint-plugin-prefer-arrow-functions": "3.4.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^1.0.4",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-toml": "0.12.0",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-unused-imports": "4.1.4",
"eslint-plugin-vue": "^9.32.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"eslint-plugin-yml": "1.16.0",
"globals": "^15.14.0",
"jsonc-eslint-parser": "2.4.0",
"local-pkg": "^0.5.1",
"toml-eslint-parser": "0.10.0",
"type-fest": "4.31.0",
"typescript-eslint": "^8.19.1",
"vue-eslint-parser": "^9.4.3",
"yaml-eslint-parser": "1.2.3"
},
"devDependencies": {
"@eslint/config-inspector": "0.7.1",
"@jest/environment": "29.7.0",
"@jest/expect": "29.7.0",
"@types/eslint": "9.6.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint-plugin-security": "^3.0.0",
"@types/eslint-plugin-tailwindcss": "3.17.0",
"@types/eslint__js": "^8.42.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^18.19.70",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"eslint-typegen": "0.3.2",
"prettier": "^3.4.2",
"release-it": "^18.0.0",
"shiki": "1.26.1",
"shx": "^0.3.4",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"peerDependencies": {
"eslint": ">=9"
},
"engines": {
"node": ">=18.18.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}