-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.83 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
{
"name": "@nodecraft/eslint-config",
"version": "44.0.0",
"description": "Nodecraft base JS ESLint config",
"keywords": [
"eslint",
"eslintconfig",
"config",
"javascript",
"nodecraft"
],
"homepage": "https://github.com/nodecraft/eslint-config",
"bugs": {
"url": "https://github.com/nodecraft/eslint-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodecraft/eslint-config.git"
},
"license": "MIT",
"author": "Nodecraft Inc.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.8.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-vue": "^9.28.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"typescript": "^5.6.2"
},
"peerDependencies": {
"@stylistic/eslint-plugin": "^2.8.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-vue": "^9.28.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"typescript": "^5.6.2"
},
"peerDependenciesMeta": {
"@typescript-eslint/eslint-plugin": {
"optional": true
},
"@typescript-eslint/parser": {
"optional": true
},
"eslint-plugin-vue": {
"optional": true
},
"eslint-plugin-vuejs-accessibility": {
"optional": true
},
"typescript": {
"optional": true
}
},
"engines": {
"node": ">= 18"
}
}