-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "@vue/create-eslint-config",
"version": "0.6.1",
"description": "Utility to setup ESLint in Vue.js projects.",
"type": "module",
"main": "index.js",
"bin": {
"create-eslint-config": "bin/create-eslint-config.js"
},
"engines": {
"node": "^16.14.0 || >= 18.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/create-eslint-config.git"
},
"keywords": [
"vue",
"eslint",
"config"
],
"author": "Haoqun Jiang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/create-eslint-config/issues"
},
"homepage": "https://github.com/vuejs/create-eslint-config#readme",
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"ejs": "^3.1.10",
"enquirer": "^2.4.1",
"kolorist": "^1.8.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/node": "^22.8.7",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.3",
"eslint": "^9.14.0",
"eslint-plugin-oxlint": "^0.11.0",
"eslint-plugin-vue": "^9.30.0",
"npm-run-all2": "^7.0.1",
"oxlint": "^0.11.0",
"prettier": "^3.3.3",
"typescript": "~5.6.0"
}
}