-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "vue-img-mapper",
"version": "0.1.0",
"description": "Vue Component to highlight interactive zones in images",
"keywords": [
"vue",
"vue-img-mapper",
"vue-image-mapper",
"img-mapper",
"image-mapper",
"img mapper",
"image mapper"
],
"homepage": "https://img-mapper.github.io/vue-docs",
"bugs": {
"url": "https://github.com/img-mapper/vue-img-mapper/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/img-mapper/vue-img-mapper.git"
},
"license": "MIT",
"author": "Nisharg Shah",
"type": "commonjs",
"main": "dist/vue-img-mapper.umd.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"pre-commit": "npx husky add .husky/pre-commit \"npx lint-staged\"",
"prepublishOnly": "npm run build",
"prepare": "npm run build && husky install"
},
"lint-staged": {
"*.{vue,js}": [
"eslint --fix"
]
},
"dependencies": {
"vue": "^3.2.6"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.6.0",
"@vue/compiler-sfc": "^3.0.5",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-vue": "^7.17.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"vite": "^2.5.1",
"vite-plugin-eslint": "^1.3.0"
}
}