-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 4.13 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
121
122
123
124
125
{
"name": "eslint-config-un",
"version": "0.4.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": {
"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 --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",
"typegen": "tsx scripts/typegen.ts",
"build:code": "tsup --format esm,cjs --clean --dts",
"build": "npm run typegen && npm run build:code",
"lint:public-types": "npx @arethetypeswrong/cli --pack .",
"prepublishOnly": "npm run test && npm run build && npm run lint:public-types"
},
"dependencies": {
"@antfu/utils": "8.1.0",
"@eslint-community/eslint-plugin-eslint-comments": "4.4.1",
"@eslint/markdown": "6.2.1",
"@stylistic/eslint-plugin": "2.13.0",
"@typescript-eslint/parser": "8.20.0",
"@vitest/eslint-plugin": "1.1.25",
"eslint-config-flat-gitignore": "1.0.0",
"eslint-config-prettier": "10.0.1",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-merge-processors": "1.0.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.11.0",
"eslint-plugin-jest-extended": "3.0.0",
"eslint-plugin-jsdoc": "50.6.2",
"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.20.0",
"eslint-plugin-perfectionist": "4.6.0",
"eslint-plugin-pinia": "0.4.1",
"eslint-plugin-prefer-arrow-functions": "3.6.2",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-regexp": "2.7.0",
"eslint-plugin-security": "3.0.1",
"eslint-plugin-sonarjs": "3.0.1",
"eslint-plugin-tailwindcss": "3.18.0",
"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",
"is-in-editor": "0.2.0",
"jsonc-eslint-parser": "2.4.0",
"local-pkg": "1.0.0",
"toml-eslint-parser": "0.10.0",
"type-fest": "4.32.0",
"typescript-eslint": "8.20.0",
"vue-eslint-parser": "9.4.3",
"yaml-eslint-parser": "1.2.3"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.17.3",
"@eslint/config-inspector": "1.0.0",
"@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.71",
"cross-env": "7.0.3",
"eslint": "9.18.0",
"eslint-typegen": "1.0.0",
"prettier": "3.4.2",
"release-it": "18.1.1",
"shiki": "1.27.2",
"shx": "0.3.4",
"tsup": "8.3.5",
"typescript": "5.7.3"
},
"peerDependencies": {
"eslint": ">=9"
},
"engines": {
"node": ">=18.18.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}