-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.42 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
88
89
90
91
{
"name": "vue-ol-comp",
"version": "0.1.12",
"type": "module",
"description": "A composable connecting Vue with OpenLayers",
"license": "MIT",
"keywords": [
"vue",
"openlayers",
"gis",
"webgis",
"webmapping",
"state",
"composable"
],
"homepage": "https://github.com/jakobmiksch/vue-ol-comp",
"repository": {
"type": "git",
"url": "git+https://github.com/jakobmiksch/vue-ol-comp.git"
},
"bugs": {
"url": "https://github.com/jakobmiksch/vue-ol-comp/issues",
"email": "[email protected]"
},
"contributors": [
{
"name": "Jakob Miksch",
"email": "[email protected]",
"url": "https://jakobmiksch.eu"
}
],
"files": [
"dist"
],
"engines": {
"npm": ">=8.0.0 <11.0.0",
"node": ">18.0.0 <21.0.0"
},
"main": "./dist/vue-ol-comp.umd.cjs",
"module": "./dist/vue-ol-comp.js",
"exports": {
".": {
"import": "./dist/vue-ol-comp.js",
"require": "./dist/vue-ol-comp.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "vite -c vite.app.config.ts",
"build:app": "vite -c vite.app.config.ts build",
"build:lib": "npm run build:lib:code && npm run build:lib:types",
"build:lib:code": "vite -c vite.lib.config.ts build",
"build:lib:types": "vue-tsc -p tsconfig.lib.json --emitDeclarationOnly",
"type-check:lib": "vue-tsc -p tsconfig.lib.json",
"type-check:app": "vue-tsc --noEmit --composite false",
"lint": "eslint . --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"release": "release-it",
"prepare": "husky"
},
"peerDependencies": {
"ol": ">=6.15.1 <10.0.0",
"vue": ">=3.3.0 <4.0.0"
},
"dependencies": {
"@vueuse/shared": "^11.0.3"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^22.5.1",
"@vitejs/plugin-vue": "^5.0.1",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.56.0",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-sonarjs": "^1.0.3",
"eslint-plugin-tsdoc": "^0.3.0",
"husky": "^9.0.11",
"prettier": "^3.2.2",
"release-it": "^17.2.1",
"typescript": "~5.6.2",
"vite": "^5.0.11",
"vite-plugin-dts": "^4.2.1",
"vue": "^3.4.14",
"vue-eslint-parser": "^9.4.0",
"vue-router": "^4.2.5",
"vue-tsc": "^2.0.6"
}
}