ml-time-graph 1.0.0
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 +32 -0
- package/MKT_AGGREGATE.md +154 -0
- package/README.de.md +154 -0
- package/README.md +152 -0
- package/USAGE.md +343 -0
- package/dist/aggregated_subtypes-DZNZyFTX.d.ts +43 -0
- package/dist/analyze/index.d.ts +296 -0
- package/dist/analyze/index.js +574 -0
- package/dist/index.d.ts +481 -0
- package/dist/index.js +3432 -0
- package/dist/interaction/index.d.ts +141 -0
- package/dist/interaction/index.js +438 -0
- package/dist/internals.d.ts +899 -0
- package/dist/internals.js +2465 -0
- package/dist/layout-Sc5UkC0r.d.ts +246 -0
- package/dist/scale-Cbr0KpPz.d.ts +824 -0
- package/package.json +85 -0
package/package.json
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ml-time-graph",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "TypeScript library for time-series chart rendering — DOM-free SVG output (works in the browser and on the server).",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"module": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./internals": {
|
|
15
|
+
"types": "./dist/internals.d.ts",
|
|
16
|
+
"import": "./dist/internals.js"
|
|
17
|
+
},
|
|
18
|
+
"./analyze": {
|
|
19
|
+
"types": "./dist/analyze/index.d.ts",
|
|
20
|
+
"import": "./dist/analyze/index.js"
|
|
21
|
+
},
|
|
22
|
+
"./interaction": {
|
|
23
|
+
"types": "./dist/interaction/index.d.ts",
|
|
24
|
+
"import": "./dist/interaction/index.js"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"README.md",
|
|
30
|
+
"README.de.md",
|
|
31
|
+
"USAGE.md",
|
|
32
|
+
"MKT_AGGREGATE.md",
|
|
33
|
+
"LICENSE"
|
|
34
|
+
],
|
|
35
|
+
"scripts": {
|
|
36
|
+
"dev": "vite demos",
|
|
37
|
+
"build": "tsup",
|
|
38
|
+
"build:demos": "tsc -p tsconfig.demos.json",
|
|
39
|
+
"test": "vitest",
|
|
40
|
+
"test:coverage": "vitest run --coverage",
|
|
41
|
+
"typecheck": "tsc --noEmit",
|
|
42
|
+
"typecheck:demos": "tsc -p tsconfig.demos.json",
|
|
43
|
+
"lint": "eslint .",
|
|
44
|
+
"prepublishOnly": "tsup"
|
|
45
|
+
},
|
|
46
|
+
"keywords": [
|
|
47
|
+
"chart",
|
|
48
|
+
"time-series",
|
|
49
|
+
"typescript",
|
|
50
|
+
"svg",
|
|
51
|
+
"renderer",
|
|
52
|
+
"ssr",
|
|
53
|
+
"sensor",
|
|
54
|
+
"monitoring",
|
|
55
|
+
"incident-analysis",
|
|
56
|
+
"mkt"
|
|
57
|
+
],
|
|
58
|
+
"author": "Michael Lechner",
|
|
59
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
60
|
+
"homepage": "https://github.com/mlc0911/mlctimegraph",
|
|
61
|
+
"repository": {
|
|
62
|
+
"type": "git",
|
|
63
|
+
"url": "git+https://gitlab.com/mlc0911/mlctimegraph.git"
|
|
64
|
+
},
|
|
65
|
+
"bugs": {
|
|
66
|
+
"url": "https://gitlab.com/mlc0911/mlctimegraph/-/issues"
|
|
67
|
+
},
|
|
68
|
+
"engines": {
|
|
69
|
+
"node": ">=18"
|
|
70
|
+
},
|
|
71
|
+
"devDependencies": {
|
|
72
|
+
"@eslint/js": "^10.0.1",
|
|
73
|
+
"@typescript-eslint/eslint-plugin": "^8.60.0",
|
|
74
|
+
"@typescript-eslint/parser": "^8.60.0",
|
|
75
|
+
"@vitest/coverage-v8": "^4.1.6",
|
|
76
|
+
"eslint": "^10.4.0",
|
|
77
|
+
"globals": "^17.6.0",
|
|
78
|
+
"jiti": "^2.7.0",
|
|
79
|
+
"tsup": "^8.5.1",
|
|
80
|
+
"typescript": "^6.0.3",
|
|
81
|
+
"typescript-eslint": "^8.60.0",
|
|
82
|
+
"vite": "^8.0.13",
|
|
83
|
+
"vitest": "^4.1.6"
|
|
84
|
+
}
|
|
85
|
+
}
|