tsichart-core 2.0.0-beta.3 → 2.0.0-beta.6
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/dist/index.js +122 -158
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +122 -158
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +45264 -0
- package/dist/index.umd.js.map +1 -0
- package/package.json +21 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tsichart-core",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.6",
|
|
4
4
|
"description": "Framework-agnostic time series charting library - Core package",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"timeseries",
|
|
@@ -72,6 +72,16 @@
|
|
|
72
72
|
"homepage": "https://aenas11.github.io/tsichart-core/",
|
|
73
73
|
"author": "Alex Sysoiev <alexander.sysoev@gmail.com>",
|
|
74
74
|
"license": "MIT",
|
|
75
|
+
"scripts": {
|
|
76
|
+
"build": "rollup -c rollup.config.mjs",
|
|
77
|
+
"dev": "rollup -c --watch",
|
|
78
|
+
"dev:server": "webpack serve --config webpack.dev.js",
|
|
79
|
+
"dev:build": "webpack --config webpack.dev.js",
|
|
80
|
+
"test": "jest",
|
|
81
|
+
"test:watch": "jest --watch",
|
|
82
|
+
"test:coverage": "jest --coverage",
|
|
83
|
+
"clean": "shx rm -rf dist coverage dev-dist"
|
|
84
|
+
},
|
|
75
85
|
"peerDependencies": {
|
|
76
86
|
"d3": "^7.0.0"
|
|
77
87
|
},
|
|
@@ -95,6 +105,8 @@
|
|
|
95
105
|
"@testing-library/jest-dom": "^6.9.1",
|
|
96
106
|
"@types/jest": "^29.5.14",
|
|
97
107
|
"@types/node": "^24.7.2",
|
|
108
|
+
"css-loader": "^7.1.2",
|
|
109
|
+
"html-webpack-plugin": "^5.6.0",
|
|
98
110
|
"jest": "^29.7.0",
|
|
99
111
|
"jest-canvas-mock": "^2.5.2",
|
|
100
112
|
"jest-environment-jsdom": "^29.7.0",
|
|
@@ -107,16 +119,15 @@
|
|
|
107
119
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
108
120
|
"rollup-plugin-visualizer": "^6.0.4",
|
|
109
121
|
"sass": "1.93.2",
|
|
122
|
+
"sass-loader": "^16.0.5",
|
|
110
123
|
"shx": "^0.4.0",
|
|
124
|
+
"style-loader": "^4.0.0",
|
|
111
125
|
"ts-jest": "^29.4.5",
|
|
126
|
+
"ts-loader": "^9.5.4",
|
|
112
127
|
"tslib": "^2.8.1",
|
|
113
|
-
"typescript": "^5.9.3"
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
"
|
|
117
|
-
"test": "jest",
|
|
118
|
-
"test:watch": "jest --watch",
|
|
119
|
-
"test:coverage": "jest --coverage",
|
|
120
|
-
"clean": "shx rm -rf dist coverage"
|
|
128
|
+
"typescript": "^5.9.3",
|
|
129
|
+
"webpack": "^5.102.1",
|
|
130
|
+
"webpack-cli": "^6.0.1",
|
|
131
|
+
"webpack-dev-server": "^5.2.2"
|
|
121
132
|
}
|
|
122
|
-
}
|
|
133
|
+
}
|