-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
113 lines (113 loc) · 3.27 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": "elementari",
"description": "Interactive visualizations for materials science: periodic tables, Bohr atoms, nuclei, heatmaps, scatter plots.",
"author": "Janosh Riebesell <janosh.riebesell@gmail.com>",
"homepage": "https://janosh.github.io/elementari",
"repository": "https://github.com/janosh/elementari",
"license": "MIT",
"version": "0.2.3",
"type": "module",
"svelte": "./dist/index.js",
"bugs": "https://github.com/janosh/elementari/issues",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"serve": "vite build && vite preview",
"check": "svelte-check",
"package": "svelte-package",
"test": "vitest --run tests/unit/*.ts && playwright test tests/*.ts",
"test:unit": "vitest tests/unit/*.ts",
"test:e2e": "playwright test tests/*.ts",
"changelog": "npx auto-changelog --package --output changelog.md --hide-credit --commit-limit false",
"update-coverage": "vitest tests/unit --run --coverage && npx istanbul-badges-readme"
},
"dependencies": {
"@iconify/svelte": "^4.0.2",
"@sveltejs/kit": "^2.6.2",
"@threlte/core": "7.3.1",
"d3": "^7.9.0",
"d3-array": "^3.2.4",
"d3-color": "^3.1.0",
"d3-format": "^3.1.0",
"d3-interpolate-path": "^2.3.0",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.1.0",
"d3-shape": "^3.2.0",
"highlight.js": "^11.10.0",
"svelte": "4.2.19",
"svelte-multiselect": "^10.3.0",
"svelte-zoo": "^0.4.13",
"three": "^0.169.0"
},
"devDependencies": {
"@playwright/test": "^1.47.2",
"@sveltejs/adapter-static": "3.0.5",
"@sveltejs/package": "^2.3.5",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@threlte/extras": "8.11.5",
"@types/d3-array": "^3.2.1",
"@types/d3-color": "^3.1.3",
"@types/d3-interpolate-path": "^2.0.3",
"@types/d3-scale": "^4.0.8",
"@types/d3-scale-chromatic": "^3.0.3",
"@types/d3-shape": "^3.1.6",
"@types/three": "^0.169.0",
"@vitest/coverage-v8": "^2.1.2",
"eslint": "^9.12.0",
"eslint-plugin-svelte": "^2.44.1",
"hastscript": "^9.0.0",
"jsdom": "^25.0.1",
"mdsvex": "^0.12.3",
"mdsvexamples": "^0.4.1",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"rehype-autolink-headings": "^7.1.0",
"rehype-katex-svelte": "^1.2.0",
"rehype-slug": "^6.0.0",
"remark-math": "3.0.0",
"sharp": "^0.33.5",
"svelte-check": "^4.0.4",
"svelte-preprocess": "^6.0.3",
"svelte-toc": "^0.5.9",
"svelte2tsx": "^0.7.21",
"typescript": "5.6.2",
"typescript-eslint": "^8.8.0",
"vite": "^5.4.8",
"vitest": "^2.1.2"
},
"keywords": [
"svelte",
"periodic table",
"chemistry",
"data viz",
"plotting",
"component"
],
"publishConfig": {
"access": "public"
},
"exports": {
"./element/data": {
"types": "./dist/element/data.d.ts",
"default": "./dist/element/data.js"
},
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"default": "./dist/index.js"
},
"./labels": {
"types": "./dist/labels.d.ts",
"default": "./dist/labels.js"
},
"./stores": {
"types": "./dist/stores.d.ts",
"default": "./dist/stores.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
]
}