nanoplot 0.0.17 → 0.0.19
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/bun.lockb +0 -0
- package/package.json +31 -16
- package/.husky/pre-commit +0 -1
package/bun.lockb
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,56 +1,72 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nanoplot",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.19",
|
|
4
4
|
"private": false,
|
|
5
5
|
"exports": {
|
|
6
6
|
"./styles.css": "./dist/index.css",
|
|
7
7
|
"./Sunburst": {
|
|
8
|
-
"import": "./dist/src/components/Sunburst/Sunburst.
|
|
8
|
+
"import": "./dist/src/components/Sunburst/Sunburst.jsx",
|
|
9
9
|
"types": "./dist/src/components/Sunburst/Sunburst.d.ts"
|
|
10
10
|
},
|
|
11
11
|
"./Bars": {
|
|
12
|
-
"import": "./dist/src/components/Bars/Bars.
|
|
12
|
+
"import": "./dist/src/components/Bars/Bars.jsx",
|
|
13
13
|
"types": "./dist/src/components/Bars/Bars.d.ts"
|
|
14
14
|
},
|
|
15
15
|
"./Lines": {
|
|
16
|
-
"import": "./dist/src/components/Lines/Lines.
|
|
16
|
+
"import": "./dist/src/components/Lines/Lines.jsx",
|
|
17
17
|
"types": "./dist/src/components/Lines/Lines.d.ts"
|
|
18
18
|
},
|
|
19
19
|
"./Pie": {
|
|
20
|
-
"import": "./dist/src/components/Pie/Pie.
|
|
20
|
+
"import": "./dist/src/components/Pie/Pie.jsx",
|
|
21
21
|
"types": "./dist/src/components/Pie/Pie.d.ts"
|
|
22
22
|
},
|
|
23
23
|
"./Scatter": {
|
|
24
|
-
"import": "./dist/src/components/Scatter/Scatter.
|
|
24
|
+
"import": "./dist/src/components/Scatter/Scatter.jsx",
|
|
25
25
|
"types": "./dist/src/components/Scatter/Scatter.d.ts"
|
|
26
26
|
},
|
|
27
27
|
"./Worldmap": {
|
|
28
|
-
"import": "./dist/src/components/Worldmap/Worldmap.
|
|
28
|
+
"import": "./dist/src/components/Worldmap/Worldmap.jsx",
|
|
29
29
|
"types": "./dist/src/components/Worldmap/Worldmap.d.ts"
|
|
30
30
|
},
|
|
31
31
|
"./XAxis": {
|
|
32
|
-
"import": "./dist/src/components/XAxis/XAxis.
|
|
32
|
+
"import": "./dist/src/components/XAxis/XAxis.jsx",
|
|
33
33
|
"types": "./dist/src/components/XAxis/XAxis.d.ts"
|
|
34
34
|
},
|
|
35
35
|
"./YAxis": {
|
|
36
|
-
"import": "./dist/src/components/YAxis/YAxis.
|
|
36
|
+
"import": "./dist/src/components/YAxis/YAxis.jsx",
|
|
37
37
|
"types": "./dist/src/components/YAxis/YAxis.d.ts"
|
|
38
38
|
},
|
|
39
39
|
"./GridLines": {
|
|
40
|
-
"import": "./dist/src/components/GridLines/GridLines.
|
|
40
|
+
"import": "./dist/src/components/GridLines/GridLines.jsx",
|
|
41
41
|
"types": "./dist/src/components/GridLines/GridLines.d.ts"
|
|
42
42
|
},
|
|
43
43
|
"./Radar": {
|
|
44
|
-
"import": "./dist/src/components/Radar/Radar.
|
|
44
|
+
"import": "./dist/src/components/Radar/Radar.jsx",
|
|
45
45
|
"types": "./dist/src/components/Radar/Radar.d.ts"
|
|
46
46
|
},
|
|
47
47
|
"./Legend": {
|
|
48
|
-
"import": "./dist/src/components/Legend/Legend.
|
|
48
|
+
"import": "./dist/src/components/Legend/Legend.jsx",
|
|
49
49
|
"types": "./dist/src/components/Legend/Legend.d.ts"
|
|
50
50
|
},
|
|
51
51
|
"./Graph": {
|
|
52
|
-
"import": "./dist/src/components/Graph/Graph.
|
|
52
|
+
"import": "./dist/src/components/Graph/Graph.jsx",
|
|
53
53
|
"types": "./dist/src/components/Graph/Graph.d.ts"
|
|
54
|
+
},
|
|
55
|
+
"./Overlay": {
|
|
56
|
+
"import": "./dist/src/components/Overlay/Overlay.jsx",
|
|
57
|
+
"types": "./dist/src/components/Overlay/Overlay.d.ts"
|
|
58
|
+
},
|
|
59
|
+
"./colors": {
|
|
60
|
+
"import": "./dist/src/utils/color/color.js",
|
|
61
|
+
"types": "./dist/src/utils/color/color.d.ts"
|
|
62
|
+
},
|
|
63
|
+
"./coordinates": {
|
|
64
|
+
"import": "./dist/src/utils/coordinates/coordinates.js",
|
|
65
|
+
"types": "./dist/src/utils/coordinates/coordinates.d.ts"
|
|
66
|
+
},
|
|
67
|
+
"./use-graph": {
|
|
68
|
+
"import": "./dist/src/hooks/use-graph/use-graph.jsx",
|
|
69
|
+
"types": "./dist/src/hooks/use-graph/use-graph.d.ts"
|
|
54
70
|
}
|
|
55
71
|
},
|
|
56
72
|
"scripts": {
|
|
@@ -60,8 +76,7 @@
|
|
|
60
76
|
"start": "next start",
|
|
61
77
|
"test": "bun test --watch",
|
|
62
78
|
"test:ci": "bun test --ci",
|
|
63
|
-
"cypress": "cypress open"
|
|
64
|
-
"prepare": "husky install"
|
|
79
|
+
"cypress": "cypress open"
|
|
65
80
|
},
|
|
66
81
|
"devDependencies": {
|
|
67
82
|
"@deanc/esbuild-plugin-postcss": "^1.0.2",
|
|
@@ -83,7 +98,7 @@
|
|
|
83
98
|
"esbuild-plugin-sass": "^1.0.1",
|
|
84
99
|
"esbuild-sass-plugin": "^3.3.1",
|
|
85
100
|
"husky": "^9.1.7",
|
|
86
|
-
"nanoplot": "0.0.
|
|
101
|
+
"nanoplot": "0.0.18",
|
|
87
102
|
"next": "15.0.3",
|
|
88
103
|
"postcss": "^8.4.49",
|
|
89
104
|
"postcss-modules": "^6.0.1",
|
package/.husky/pre-commit
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
bun run prettier --write "src/**/*.{ts,tsx}"
|