-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.6 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
111
112
113
{
"name": "@urbaninstitute/dataviz-components",
"version": "0.12.2",
"scripts": {
"dev": "npm run storybook",
"build": "vite build && npm run package",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint && npm run compile-theme-styles",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"test": "vitest run",
"lint": "prettier --plugin-search-dir . --check .",
"format": "prettier --plugin-search-dir . --write .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-storybook:test": "storybook build --quiet --test",
"test-storybook": "test-storybook",
"test-storybook-run": "npx concurrently -k -s first -n 'SB,TEST' -c 'magenta,blue' 'npx http-server storybook-static --port 6006 --silent' 'npx wait-on tcp:6006 && npm run test-storybook -- --index-json'",
"compile-theme-styles": "node ./bin/compileTheme.js",
"create-component": "node ./bin/createComponent/createComponent.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"svelte": "./dist/utils/index.js"
},
"./stores": {
"types": "./dist/stores/index.d.ts",
"svelte": "./dist/stores/index.js"
},
"./actions": {
"types": "./dist/actions/index.d.ts",
"svelte": "./dist/actions/index.js"
},
"./maps": {
"types": "./dist/maps/index.d.ts",
"svelte": "./dist/maps/index.js"
},
"./icons": {
"types": "./dist/Icons/index.d.ts",
"svelte": "./dist/Icons/index.js"
},
"./style": "./dist/style/main.css",
"./style/theme": "./dist/style/theme.css"
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*",
"!dist/**/*.stories.*",
"!dist/**/*.md*"
],
"peerDependencies": {
"svelte": "4 - 5"
},
"devDependencies": {
"@etchteam/storybook-addon-github-link": "^1.0.1",
"@inquirer/prompts": "^5.3.2",
"@storybook/addon-a11y": "^8.0.5",
"@storybook/addon-essentials": "^8.0.5",
"@storybook/addon-interactions": "^8.0.5",
"@storybook/addon-links": "^8.0.5",
"@storybook/addon-svelte-csf": "^4.1.2",
"@storybook/blocks": "^8.0.5",
"@storybook/manager-api": "^8.0.5",
"@storybook/svelte": "^8.0.5",
"@storybook/sveltekit": "^8.0.5",
"@storybook/test": "^8.0.5",
"@storybook/test-runner": "^0.17.0",
"@storybook/theming": "^8.0.5",
"@sveltejs/adapter-auto": "^3.2.0",
"@sveltejs/kit": "^2.5.5",
"@sveltejs/package": "^2.3.0",
"concurrently": "^8.2.2",
"http-server": "^14.1.1",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.2",
"publint": "^0.1.9",
"storybook": "^8.0.5",
"svelte": "^4.2.12",
"svelte-check": "^3.6.9",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^5.2.8",
"vitest": "^1.4.0",
"wait-on": "^7.2.0"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"dependencies": {
"@sveltejs/svelte-scroller": "^2.0.7",
"@types/d3": "^7.4.3",
"@types/d3-array": "^3.2.1",
"@types/d3-geo": "^3.1.0",
"@types/d3-scale": "^4.0.8",
"@types/d3-selection": "^3.0.10",
"@types/d3-zoom": "^3.0.8",
"d3-array": "^3.2.4",
"d3-format": "^3.1.0",
"d3-geo": "^3.1.1",
"d3-interpolate": "^3.0.1",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"layercake": "^8.4.2",
"pym.js": "^1.3.2"
}
}