-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.12 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
{
"name": "@hugo-t-b/eslint-config",
"version": "1.5.3",
"description": "My ESLint configuration for JS, TS, and Vue",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./javascript": "./dist/index.js",
"./typescript": "./dist/typescript/index.js",
"./vitest": "./dist/vitest/index.js",
"./vue": "./dist/vue/index.js"
},
"types": "./dist/index.d.ts",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepublishOnly": "pnpm test && pnpm build",
"build": "tsc",
"lint": "pnpm build && eslint .",
"test": "vitest --run",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hugo-t-b/eslint-config.git"
},
"keywords": [
"lint",
"eslint",
"config",
"javascript",
"typescript",
"vue"
],
"author": "Hugo Brosnahan",
"license": "MIT",
"bugs": {
"url": "https://github.com/hugo-t-b/eslint-config/issues"
},
"homepage": "https://github.com/hugo-t-b/eslint-config#readme",
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "5.x.x",
"@typescript-eslint/parser": "5.x.x",
"eslint": ">=6.0.0 <9.0.0",
"eslint-import-resolver-typescript": "<4.0.0",
"eslint-plugin-import": "2.x.x",
"eslint-plugin-vue": "9.x.x",
"typescript": ">=4.0.0 <6.0.0",
"vitest": "*",
"vue-eslint-parser": "9.x.x"
},
"peerDependenciesMeta": {
"@typescript-eslint/eslint-plugin": {
"optional": true
},
"@typescript-eslint/parser": {
"optional": true
},
"eslint-import-resolver-typescript": {
"optional": true
},
"eslint-plugin-vue": {
"optional": true
},
"typescript": {
"optional": true
},
"vitest": {
"optional": true
},
"vue-eslint-parser": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^18.15.12",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
}
}