ml-time-graph 1.0.6 → 1.0.7
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/package.json +66 -65
package/package.json
CHANGED
|
@@ -1,70 +1,71 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
2
|
+
"name": "ml-time-graph",
|
|
3
|
+
"version": "1.0.7",
|
|
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
|
+
}
|
|
13
26
|
},
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"docs",
|
|
30
|
+
"README.md",
|
|
31
|
+
"README.de.md",
|
|
32
|
+
"USAGE.md",
|
|
33
|
+
"API_DESIGN.md",
|
|
34
|
+
"LICENSE"
|
|
35
|
+
],
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "tsup",
|
|
38
|
+
"test": "vitest run",
|
|
39
|
+
"typecheck": "tsc --noEmit",
|
|
40
|
+
"prepublishOnly": "tsup"
|
|
17
41
|
},
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
42
|
+
"keywords": [
|
|
43
|
+
"chart",
|
|
44
|
+
"time-series",
|
|
45
|
+
"typescript",
|
|
46
|
+
"svg",
|
|
47
|
+
"renderer",
|
|
48
|
+
"ssr",
|
|
49
|
+
"sensor",
|
|
50
|
+
"monitoring",
|
|
51
|
+
"incident-analysis",
|
|
52
|
+
"mkt"
|
|
53
|
+
],
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"ml-time-analyze": "workspace:*"
|
|
21
56
|
},
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
57
|
+
"author": "Michael Lechner",
|
|
58
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
59
|
+
"homepage": "https://github.com/mlc0911/mlctimegraph",
|
|
60
|
+
"repository": {
|
|
61
|
+
"type": "git",
|
|
62
|
+
"url": "git+https://gitlab.com/mlc0911/mlctimegraph.git",
|
|
63
|
+
"directory": "packages/ml-time-graph"
|
|
64
|
+
},
|
|
65
|
+
"bugs": {
|
|
66
|
+
"url": "https://gitlab.com/mlc0911/mlctimegraph/-/issues"
|
|
67
|
+
},
|
|
68
|
+
"engines": {
|
|
69
|
+
"node": ">=18"
|
|
25
70
|
}
|
|
26
|
-
|
|
27
|
-
"files": [
|
|
28
|
-
"dist",
|
|
29
|
-
"docs",
|
|
30
|
-
"README.md",
|
|
31
|
-
"README.de.md",
|
|
32
|
-
"USAGE.md",
|
|
33
|
-
"API_DESIGN.md",
|
|
34
|
-
"LICENSE"
|
|
35
|
-
],
|
|
36
|
-
"keywords": [
|
|
37
|
-
"chart",
|
|
38
|
-
"time-series",
|
|
39
|
-
"typescript",
|
|
40
|
-
"svg",
|
|
41
|
-
"renderer",
|
|
42
|
-
"ssr",
|
|
43
|
-
"sensor",
|
|
44
|
-
"monitoring",
|
|
45
|
-
"incident-analysis",
|
|
46
|
-
"mkt"
|
|
47
|
-
],
|
|
48
|
-
"devDependencies": {
|
|
49
|
-
"ml-time-analyze": "0.1.0"
|
|
50
|
-
},
|
|
51
|
-
"author": "Michael Lechner",
|
|
52
|
-
"license": "SEE LICENSE IN LICENSE",
|
|
53
|
-
"homepage": "https://github.com/mlc0911/mlctimegraph",
|
|
54
|
-
"repository": {
|
|
55
|
-
"type": "git",
|
|
56
|
-
"url": "git+https://gitlab.com/mlc0911/mlctimegraph.git",
|
|
57
|
-
"directory": "packages/ml-time-graph"
|
|
58
|
-
},
|
|
59
|
-
"bugs": {
|
|
60
|
-
"url": "https://gitlab.com/mlc0911/mlctimegraph/-/issues"
|
|
61
|
-
},
|
|
62
|
-
"engines": {
|
|
63
|
-
"node": ">=18"
|
|
64
|
-
},
|
|
65
|
-
"scripts": {
|
|
66
|
-
"build": "tsup",
|
|
67
|
-
"test": "vitest run",
|
|
68
|
-
"typecheck": "tsc --noEmit"
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
+
}
|