-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.41 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@statelyai/graph",
"packageManager": "pnpm@10.28.2",
"type": "module",
"version": "0.11.0",
"description": "A TypeScript-first graph library with plain JSON-serializable objects",
"author": "David Khourshid <david@stately.ai>",
"license": "MIT",
"homepage": "https://github.com/statelyai/graph#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/statelyai/graph.git"
},
"bugs": {
"url": "https://github.com/statelyai/graph/issues"
},
"keywords": [
"graph",
"directed",
"undirected",
"dag",
"algorithms",
"typescript"
],
"exports": {
".": "./dist/index.mjs",
"./algorithms": "./dist/algorithms.mjs",
"./format-support": "./dist/format-support.mjs",
"./adjacency-list": "./dist/formats/adjacency-list/index.mjs",
"./converter": "./dist/formats/converter/index.mjs",
"./cytoscape": "./dist/formats/cytoscape/index.mjs",
"./d3": "./dist/formats/d3/index.mjs",
"./dot": "./dist/formats/dot/index.mjs",
"./edge-list": "./dist/formats/edge-list/index.mjs",
"./elk": "./dist/formats/elk/index.mjs",
"./gexf": "./dist/formats/gexf/index.mjs",
"./gml": "./dist/formats/gml/index.mjs",
"./graphml": "./dist/formats/graphml/index.mjs",
"./jgf": "./dist/formats/jgf/index.mjs",
"./mermaid": "./dist/formats/mermaid/index.mjs",
"./tgf": "./dist/formats/tgf/index.mjs",
"./xyflow": "./dist/formats/xyflow/index.mjs",
"./queries": "./dist/queries.mjs",
"./schemas": "./dist/schemas.mjs",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist",
"schemas"
],
"scripts": {
"build": "tsdown",
"bench": "vitest bench --run",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"check:generated": "tsx scripts/generate-json-schema.ts --check",
"verify": "pnpm typecheck && pnpm check:generated && pnpm test -- --run && pnpm build && pnpm validate:package",
"validate:package": "publint && tsx scripts/smoke-package.ts",
"generate-schema": "tsx scripts/generate-json-schema.ts",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm run build && changeset publish",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"publint": "^0.3.15",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@types/d3-array": "^3.2.2",
"@types/d3-force": "^3.0.10",
"@types/node": "^25.0.3",
"@xyflow/system": "^0.0.75",
"bumpp": "^10.3.2",
"cytoscape": "^3.33.1",
"d3-array": "^3.2.4",
"d3-force": "^3.0.0",
"dotparser": "^1.1.1",
"elkjs": "^0.11.1",
"fast-xml-parser": "^5.3.4",
"tsdown": "^0.18.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16",
"xstate": "^5.28.0",
"zod": "^4.3.6"
},
"peerDependencies": {
"cytoscape": "^3.0.0",
"d3-force": "^3.0.0",
"dotparser": "^1.0.0",
"elkjs": "^0.9.0 || ^0.10.0 || ^0.11.0",
"fast-xml-parser": "^5.0.0",
"zod": "^4.0.0"
},
"peerDependenciesMeta": {
"cytoscape": {
"optional": true
},
"d3-force": {
"optional": true
},
"dotparser": {
"optional": true
},
"elkjs": {
"optional": true
},
"fast-xml-parser": {
"optional": true
},
"zod": {
"optional": true
}
}
}