-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.16 KB
/
package.json
File metadata and controls
78 lines (78 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
{
"name": "@opensystemslab/map",
"version": "1.0.0-alpha.11",
"license": "MPL-2.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/theopensystemslab/map.git"
},
"browser": "./dist/component-lib.umd.js",
"module": "./dist/component-lib.es.js",
"exports": "./dist/component-lib.es.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"dev": "vite",
"build": "rm -rf dist types && tsc && vite build && sed 's/src=\".*\"/src=\"component-lib.es.js\"/' index.html > dist/index.html",
"prepublishOnly": "npm run build",
"prepare": "husky install",
"test": "vitest",
"test:ui": "vitest --ui",
"storybook": "storybook dev -p 7007",
"storybook:build": "storybook build -o storybook-static"
},
"dependencies": {
"@turf/helpers": "^7.3.4",
"@turf/union": "^7.3.4",
"@types/geojson": "^7946.0.16",
"accessible-autocomplete": "^3.0.1",
"file-saver": "^2.0.5",
"govuk-frontend": "^6.1.0",
"jspdf": "^4.2.1",
"lit": "^3.3.2",
"ol": "^10.9.0",
"ol-ext": "^4.0.38",
"ol-mapbox-style": "^12.6.1",
"postcode": "^5.1.0",
"proj4": "^2.20.8",
"rambda": "^10.3.4"
},
"devDependencies": {
"@storybook/addon-docs": "^10.3.5",
"@storybook/web-components-vite": "^10.3.5",
"@testing-library/dom": "^10.4.1",
"@testing-library/user-event": "^14.6.1",
"@types/file-saver": "^2.0.7",
"@types/node": "~24.10.15",
"@types/ol-ext": "npm:@siedlerchr/types-ol-ext@^3.6.3",
"@vitest/ui": "^3.2.4",
"happy-dom": "^20.9.0",
"husky": "^8.0.3",
"lint-staged": "^15.5.2",
"prettier": "^3.8.3",
"rollup-plugin-postcss-lit": "^2.2.0",
"sass": "^1.99.0",
"storybook": "^10.3.5",
"typescript": "^5.8.3",
"vite": "^6.4.1",
"vitest": "3.2.4",
"wait-for-expect": "^3.0.2"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md,html}": "prettier --write"
},
"stackblitz": {
"startCommand": "npm run test:ui"
},
"packageManager": "pnpm@10.30.2",
"pnpm": {
"overrides": {
"braces@<3.0.3": ">=3.0.3"
}
},
"customElements": "custom-elements.json"
}