@ts-graphviz/core 0.0.0-next-20240301111950
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/CHANGELOG.md +301 -0
- package/LICENSE +22 -0
- package/README.md +47 -0
- package/lib/AttributeList.cjs +14 -0
- package/lib/AttributeList.d.ts +43 -0
- package/lib/AttributeList.js +14 -0
- package/lib/AttributesBase.cjs +40 -0
- package/lib/AttributesBase.d.ts +30 -0
- package/lib/AttributesBase.js +40 -0
- package/lib/AttributesGroup.cjs +7 -0
- package/lib/AttributesGroup.d.ts +39 -0
- package/lib/AttributesGroup.js +7 -0
- package/lib/Digraph.cjs +9 -0
- package/lib/Digraph.d.ts +107 -0
- package/lib/Digraph.js +9 -0
- package/lib/DotObject.cjs +5 -0
- package/lib/DotObject.d.ts +8 -0
- package/lib/DotObject.js +5 -0
- package/lib/Edge.cjs +23 -0
- package/lib/Edge.d.ts +26 -0
- package/lib/Edge.js +23 -0
- package/lib/Graph.cjs +9 -0
- package/lib/Graph.d.ts +107 -0
- package/lib/Graph.js +9 -0
- package/lib/GraphBase.cjs +152 -0
- package/lib/GraphBase.d.ts +81 -0
- package/lib/GraphBase.js +152 -0
- package/lib/Node.cjs +23 -0
- package/lib/Node.d.ts +64 -0
- package/lib/Node.js +23 -0
- package/lib/RootGraph.cjs +22 -0
- package/lib/RootGraph.d.ts +99 -0
- package/lib/RootGraph.js +22 -0
- package/lib/Subgraph.cjs +26 -0
- package/lib/Subgraph.d.ts +95 -0
- package/lib/Subgraph.js +26 -0
- package/lib/core.cjs +26 -0
- package/lib/core.d.ts +590 -0
- package/lib/core.js +26 -0
- package/lib/register-default.cjs +18 -0
- package/lib/register-default.d.ts +3 -0
- package/lib/register-default.js +18 -0
- package/package.json +76 -0
package/package.json
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ts-graphviz/core",
|
|
3
|
+
"version": "0.0.0-next-20240301111950",
|
|
4
|
+
"description": "Graphviz Models for Object-Oriented Programming",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"graphviz",
|
|
7
|
+
"dot"
|
|
8
|
+
],
|
|
9
|
+
"homepage": "https://github.com/ts-graphviz/ts-graphviz#readme",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/ts-graphviz/ts-graphviz/issues"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/ts-graphviz/ts-graphviz.git",
|
|
16
|
+
"directory": "packages/core"
|
|
17
|
+
},
|
|
18
|
+
"funding": [
|
|
19
|
+
{
|
|
20
|
+
"type": "github",
|
|
21
|
+
"url": "https://github.com/sponsors/ts-graphviz"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"type": "opencollective",
|
|
25
|
+
"url": "https://opencollective.com/ts-graphviz"
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"author": "Yuki Yamazaki <yuki@kamiazya.tech>",
|
|
30
|
+
"type": "module",
|
|
31
|
+
"exports": {
|
|
32
|
+
".": {
|
|
33
|
+
"require": {
|
|
34
|
+
"types": "./lib/core.d.ts",
|
|
35
|
+
"default": "./lib/core.cjs"
|
|
36
|
+
},
|
|
37
|
+
"import": {
|
|
38
|
+
"types": "./lib/core.d.ts",
|
|
39
|
+
"default": "./lib/core.js"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"./register-default": {
|
|
43
|
+
"require": "./lib/register-default.cjs",
|
|
44
|
+
"default": "./lib/register-default.js"
|
|
45
|
+
},
|
|
46
|
+
"./package.json": "./package.json"
|
|
47
|
+
},
|
|
48
|
+
"main": "lib/core.cjs",
|
|
49
|
+
"module": "lib/core.js",
|
|
50
|
+
"types": "lib/core.d.ts",
|
|
51
|
+
"files": [
|
|
52
|
+
"lib",
|
|
53
|
+
"README.md",
|
|
54
|
+
"CHANGELOG.md",
|
|
55
|
+
"LICENSE"
|
|
56
|
+
],
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"@ts-graphviz/ast": "^0.0.0-next-20240301111950",
|
|
59
|
+
"@ts-graphviz/common": "^0.0.0-next-20240301111950"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"typescript": "^5.3.3",
|
|
63
|
+
"vite": "^5.1.3",
|
|
64
|
+
"vite-plugin-dts": "^3.7.2"
|
|
65
|
+
},
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": ">=18"
|
|
68
|
+
},
|
|
69
|
+
"publishConfig": {
|
|
70
|
+
"access": "public",
|
|
71
|
+
"provenance": true
|
|
72
|
+
},
|
|
73
|
+
"scripts": {
|
|
74
|
+
"build": "vite build"
|
|
75
|
+
}
|
|
76
|
+
}
|