-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.07 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
{
"name": "@opensystemslab/map",
"version": "1.0.0-alpha.4",
"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",
"docs": "NODE_ENV=development pitsby build --watch --port=7007",
"docsPublish": "pitsby build"
},
"dependencies": {
"@turf/helpers": "^7.1.0",
"@turf/union": "^7.1.0",
"@types/geojson": "^7946.0.14",
"accessible-autocomplete": "^2.0.4",
"file-saver": "^2.0.5",
"govuk-frontend": "^5.7.1",
"jspdf": "^2.5.2",
"lit": "^3.0.1",
"ol": "^9.2.4",
"ol-ext": "^4.0.21",
"ol-mapbox-style": "^12.3.5",
"postcode": "^5.1.0",
"proj4": "^2.12.1",
"rambda": "^9.4.0"
},
"devDependencies": {
"@glorious/pitsby": "^1.37.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/user-event": "^14.5.2",
"@types/file-saver": "^2.0.7",
"@types/node": "22.0.3",
"@types/ol-ext": "npm:@siedlerchr/types-ol-ext@^3.3.0",
"@types/proj4": "^2.5.5",
"@vitest/ui": "^0.34.7",
"happy-dom": "^9.1.9",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"prettier": "^3.2.5",
"rollup-plugin-postcss-lit": "^2.1.0",
"sass": "^1.77.8",
"typescript": "^5.6.2",
"vite": "^5.4.10",
"vitest": "0.34.6",
"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": "[email protected]",
"pnpm": {
"overrides": {
"braces@<3.0.3": ">=3.0.3"
}
}
}