-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
110 lines (110 loc) · 3.26 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@undp-data/svelte-undp-components",
"version": "2.0.5",
"description": "It manages util functions and svelte components used in UNDP GeoHub",
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest --run --passWithNoTests",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"storybook": "STORYBOOK_BUILD=true storybook dev -p 6006",
"build-storybook": "STORYBOOK_BUILD=true storybook build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UNDP-Data/geohub.git"
},
"author": "United Nations Development Programme",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/UNDP-Data/geohub/issues"
},
"homepage": "https://github.com/UNDP-Data/geohub#readme",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"svelte": "./dist/index.js"
}
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*",
"!dist/**/*.stories.*",
"!dist/**/*.mdx.*"
],
"peerDependencies": {
"svelte": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@storybook/addon-essentials": "^8.5.3",
"@storybook/addon-interactions": "^8.5.3",
"@storybook/addon-links": "^8.5.3",
"@storybook/addon-mdx-gfm": "^8.5.3",
"@storybook/addon-svelte-csf": "5.0.0-next.23",
"@storybook/blocks": "^8.5.3",
"@storybook/svelte": "^8.5.3",
"@storybook/sveltekit": "^8.5.3",
"@storybook/test": "^8.5.3",
"@sveltejs/adapter-auto": "^4.0.0",
"@sveltejs/kit": "^2.17.1",
"@sveltejs/package": "^2.3.10",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@testing-library/svelte": "^5.2.6",
"@testing-library/user-event": "^14.6.1",
"@types/d3": "^7.4.3",
"@types/eslint": "^9.6.1",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"@undp-data/undp-bulma": "workspace:^",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-storybook": "^0.11.2",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.14.0",
"jsdom": "^26.0.0",
"pmtiles": "^4.2.1",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"publint": "^0.3.4",
"storybook": "^8.5.3",
"svelte": "^5.19.9",
"svelte-check": "^4.1.4",
"svelte-htm": "^1.2.0",
"svelte-preprocess": "^6.0.3",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"vite": "^6.1.0",
"vitest": "^3.0.5"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"dependencies": {
"@undp-data/date-picker-svelte": "2.12.1",
"@undp-data/svelte-undp-design": "workspace:*",
"bignumber.js": "^9.1.2",
"chroma-js": "^3.1.2",
"d3": "^7.9.0",
"dayjs": "^1.11.13",
"esm-env": "^1.2.2",
"hex-to-css-filter": "^5.4.0",
"lodash-es": "^4.17.21",
"maplibre-gl": "^5.1.0",
"simple-statistics": "^7.8.7",
"svelte-awesome-color-picker": "^3.1.4",
"svelte-copy": "^2.0.0",
"svelte-range-slider-pips": "^3.1.4",
"svelte-tippy": "^1.3.2",
"tippy.js": "^6.3.7"
}
}