forked from vue-leaflet/vue-leaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.19 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
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@vue-leaflet/vue-leaflet",
"author": "Nicolò Maria Mezzopera",
"version": "0.10.1",
"license": "MIT",
"private": false,
"sideEffects": false,
"main": "dist/vue-leaflet.cjs.js",
"unpkg": "dist/vue-leaflet.umd.js",
"module": "dist/vue-leaflet.es.js",
"files": [
"dist/"
],
"types": "./dist/src/lib.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:vue-leaflet/vue-leaflet.git"
},
"scripts": {
"dev": "vite",
"test": "vitest --coverage",
"build": "run-p type-check build-only",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint": "yarn run lint-cmd --fix src",
"lint-cmd": "eslint src --ext .ts,.vue --ignore-path .gitignore",
"prepublishOnly": "yarn run lint && yarn run build",
"postversion": "git push --follow-tags",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs"
},
"dependencies": {
"vue": "^3.2.25"
},
"peerDependencies": {
"@types/leaflet": "^1.5.7",
"leaflet": "^1.6.0"
},
"peerDependenciesMeta": {
"@types/leaflet": {
"optional": true
}
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/leaflet": "^1.9.3",
"@types/node": "^18.13.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitest/coverage-c8": "^0.29.3",
"@vue/compiler-dom": "^3.2.47",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/server-renderer": "^3.2.47",
"@vue/test-utils": "^2.3.1",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.22.0",
"eslint-plugin-vue": "^9.3.0",
"husky": "^4.3.0",
"jsdom": "^21.1.1",
"leaflet": "^1.6.0",
"lint-staged": "^10.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"ts-debounce": "^4.0.0",
"typescript": "^4.9.5",
"vite": "^4.1.1",
"vite-plugin-dts": "^2.1.0",
"vitepress": "^0.6.0",
"vitest": "~0.29.0",
"vue-router": "^4.0.0-rc.5",
"vue-tsc": "^1.0.24"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.vue": [
"eslint"
]
}
}