-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.16 KB
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
{
"name": "@aerius/vue-geo-components",
"version": "0.1.0",
"description": "Shared Vue 3 + OpenLayers geo components for AERIUS frontends.",
"type": "module",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/aerius/vue-geo-components.git"
},
"engines": {
"node": ">=20.19"
},
"files": [
"dist",
"scripts"
],
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./style.css": "./dist/index.css",
"./package.json": "./package.json"
},
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "vite build --watch",
"build": "run-p type-check build-only",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"test": "vitest run",
"test:unit": "vitest",
"lint": "eslint . --max-warnings 0",
"lint-fix": "npm run lint -- --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "node -e \"if (!process.env.CI) { throw new Error('Publish only via CI (tag a GitHub Release).'); }\""
},
"peerDependencies": {
"ol": "^10.3.0",
"pinia": "^3.0.0",
"proj4": "^2.19.0",
"vue": "^3.5.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tsconfig/node24": "^24.0.3",
"@types/d3-interpolate": "^3.0.4",
"@types/jsdom": "^27.0.0",
"@types/node": "^24.0.0",
"@types/proj4": "^2.5.6",
"@vitejs/plugin-vue": "^6.0.3",
"@vue/compiler-sfc": "^3.5.26",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"eslint": "^9.39.2",
"eslint-plugin-vue": "^10.6.2",
"jsdom": "^27.4.0",
"npm-run-all": "^4.1.5",
"ol": "^10.7.0",
"pinia": "^3.0.4",
"prettier": "^3.7.4",
"proj4": "^2.20.2",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.16",
"vue": "^3.5.26",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^3.2.2"
},
"dependencies": {
"d3-interpolate": "^3.0.1"
}
}