-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.83 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.83 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
{
"name": "@geoblocks/ol-comfy",
"version": "2.1.1",
"description": "Comfortable and convenient ol shortcuts for standard usage.",
"type": "module",
"files": [
"src",
"lib"
],
"_peerDependenciesComment_": "Dependencies with open range version, to grant liberties on final usage.",
"peerDependencies": {
"ol": ">=10.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vitest/coverage-v8": "^4.1.5",
"core-js": "^3.49.0",
"eslint": "^10.2.1",
"gh-pages": "^6.3.0",
"happy-dom": "^20.9.0",
"prettier": "^3.8.3",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.10",
"vitest": "^4.1.5"
},
"scripts": {
"build": "npm run check && npm run test && npm run build:distlib",
"build:distlib": "npm run clean && tsc --skipLibCheck --pretty && cp -r dist/src ./lib",
"build:demo": "npm run build && vite build",
"check": "npm run prettier && npm run lint",
"clean": "rm -rf ./lib && rm -rf ./dist && rm -rf ./demo",
"dev": "vite dev",
"doc": "typedoc",
"lint": "eslint src/*.ts src/**/*.ts",
"prettier": "npx prettier '{examples/,src/}{**/*,*}.{js,ts,jsx,tsx,html,css}' --write",
"prod": "npm run build:demo && vite preview",
"test": "vitest run --coverage",
"gh-pages": "npm run build:demo && npm run doc && gh-pages -d demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geoblocks/ol-comfy.git"
},
"keywords": [
"OpenLayers",
"Utils"
],
"author": "Camptocamp SA <info@camptocamp.com> (https://www.camptocamp.com)",
"contributors": [
"Benjamin Gerber <benjamin.gerber@camptocamp.com>"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/geoblocks/ol-comfy/issues"
},
"homepage": "https://github.com/geoblocks/ol-comfy#readme"
}