svelteplot 0.10.2 → 0.10.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +1 -1
- package/package.json +12 -4
package/LICENSE.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Copyright 2024-
|
|
1
|
+
Copyright 2024-2026, Gregor Aisch
|
|
2
2
|
|
|
3
3
|
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
|
|
4
4
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svelteplot",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.3",
|
|
4
4
|
"description": "A Svelte-native data visualization framework based on the layered grammar of graphics principles.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"svelte",
|
|
@@ -16,11 +16,16 @@
|
|
|
16
16
|
"bugs": {
|
|
17
17
|
"url": "https://github.com/svelteplot/svelteplot/issues"
|
|
18
18
|
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/svelteplot/svelteplot.git"
|
|
22
|
+
},
|
|
19
23
|
"license": "ISC",
|
|
20
24
|
"author": {
|
|
21
25
|
"name": "Gregor Aisch",
|
|
22
26
|
"email": "gka@users.noreply.github.com"
|
|
23
27
|
},
|
|
28
|
+
"packageManager": "pnpm@10.0.0",
|
|
24
29
|
"type": "module",
|
|
25
30
|
"exports": {
|
|
26
31
|
".": {
|
|
@@ -61,7 +66,7 @@
|
|
|
61
66
|
"docs:api:marks": "node scripts/generate-api.js --marks && prettier --write .",
|
|
62
67
|
"docs:api:plot": "node scripts/generate-api.js --plot && prettier --write .",
|
|
63
68
|
"docs:api:transforms": "node scripts/generate-api.js --transforms && prettier --write .",
|
|
64
|
-
"format": "prettier --write .",
|
|
69
|
+
"format": "prettier --write . && eslint --fix package.json",
|
|
65
70
|
"lint": "prettier --check src && eslint src package.json",
|
|
66
71
|
"lint:types": "tsc --noEmit",
|
|
67
72
|
"prepack": "npx svelte-package",
|
|
@@ -89,8 +94,10 @@
|
|
|
89
94
|
"es-toolkit": "^1.44.0",
|
|
90
95
|
"fast-equals": "^6.0.0",
|
|
91
96
|
"interval-tree-1d": "^1.0.4",
|
|
92
|
-
"merge-deep": "^3.0.3"
|
|
93
|
-
|
|
97
|
+
"merge-deep": "^3.0.3"
|
|
98
|
+
},
|
|
99
|
+
"peerDependencies": {
|
|
100
|
+
"svelte": "^5.43.0"
|
|
94
101
|
},
|
|
95
102
|
"devDependencies": {
|
|
96
103
|
"@aitodotai/json-stringify-pretty-compact": "^1.3.0",
|
|
@@ -154,6 +161,7 @@
|
|
|
154
161
|
"svelte-check": "^4.3.5",
|
|
155
162
|
"svelte-eslint-parser": "1.4.1",
|
|
156
163
|
"svelte-highlight": "^7.9.0",
|
|
164
|
+
"svelte": "5",
|
|
157
165
|
"svg-path-parser": "^1.1.0",
|
|
158
166
|
"temml": "^0.13.1",
|
|
159
167
|
"topojson-client": "^3.1.0",
|