-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.22 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
{
"name": "@vue/eslint-config-prettier",
"version": "10.1.0",
"description": "eslint-config-prettier for create-vue",
"type": "commonjs",
"main": "index.js",
"files": [
"index.js",
"index.d.ts",
"skip-formatting.js",
"skip-formatting.d.ts"
],
"exports": {
".": "./index.js",
"./skip-formatting": "./skip-formatting.js"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/eslint-config-prettier.git"
},
"keywords": [
"vue",
"create-vue",
"create-eslint-config",
"eslint",
"prettier"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/eslint-config-prettier/issues"
},
"homepage": "https://github.com/vuejs/eslint-config-prettier#readme",
"dependencies": {
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1"
},
"devDependencies": {
"eslint": "^9.11.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"peerDependencies": {
"eslint": ">= 8.21.0",
"prettier": ">= 3.0.0"
},
"scripts": {
"lint": "eslint . --fix",
"format": "prettier *.{js,md} --write",
"prepublishOnly": "tsc"
}
}