-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.89 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
{
"name": "@websitebeaver/vue-magnifier",
"version": "1.1.0",
"main": "./dist/vue-magnifier.umd.js",
"module": "./dist/vue-magnifier.es.js",
"exports": {
".": {
"import": "./dist/vue-magnifier.es.js",
"require": "./dist/vue-magnifier.umd.js"
},
"./styles.css": "./dist/style.css"
},
"types": "./dist/install.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vue-tsc -p tsconfig.build.json --declaration --emitDeclarationOnly && vite build",
"serve": "vite preview",
"release": "release-it",
"install-demo": "npm --prefix ./demo i vue"
},
"peerDependencies": {
"vue": "^3.2.26"
},
"dependencies": {
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.throttle": "^4.1.6",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^3.1.0",
"@types/node": "^17.0.15",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"@vitejs/plugin-vue": "^2.1.0",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.1.1",
"prettier": "2.5.0",
"release-it": "^15.0.0",
"typescript": "^4.9.4",
"vite": "^2.7.13",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^1.0.24"
},
"description": "Vue 3 magnifier.",
"repository": {
"type": "git",
"url": "git+https://github.com/WebsiteBeaver/vue-magnifier.git"
},
"author": "Daniel Marcus",
"license": "MIT",
"bugs": {
"url": "https://github.com/WebsiteBeaver/vue-magnifier/issues"
},
"homepage": "https://github.com/WebsiteBeaver/vue-magnifier#readme",
"publishConfig": {
"access": "public"
}
}