-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.26 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.26 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
{
"name": "@isle-labs/graphmaker",
"version": "0.0.4",
"description": "A library for creating visualizations of undirected and directed graphs with the help of AI.",
"main": "lib/index.js",
"bin": {
"graphmaker": "bin/cli"
},
"scripts": {
"test": "node --test test/*.js",
"compile-constraints": "nearleyc lib/constraint-grammar.ne -o lib/constraint-grammar.js",
"build-css": "npx tailwindcss -i ./docs/css/styles.css -o ./docs/css/tailwind.css --minify",
"build-ts-docs": "npx typedoc --tsconfig .config/tsconfig.json --readme none",
"build-docs": "node scripts/build-readme.js && node scripts/build-gallery.js && node scripts/build-index-html.js && npm run build-css",
"postinstall": "npm run compile-constraints",
"profile-start": "run() { if [ ! -f 'profiles/package.json' ]; then cp package.json profiles; fi; cp \"profiles/$1-package.json\" package.json; }; run",
"profile-end": "mv profiles/package.json package.json",
"postversion": "git push && git push --tags",
"lint": "eslint lib/*.js test/*.js",
"repl": "node --no-warnings=ExperimentalWarning lib/repl.js",
"gm": "sh ./bin/gm.sh"
},
"types": "./types",
"repository": {
"type": "git",
"url": "git+https://github.com/isle-project/graphmaker.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/isle-project/graphmaker/issues"
},
"homepage": "https://github.com/isle-project/graphmaker#readme",
"dependencies": {
"@dqbd/tiktoken": "^1.0.21",
"@stdlib/assert-is-array": "^0.2.2",
"@stdlib/assert-is-string": "^0.2.2",
"@stdlib/math-base-special-deg2rad": "^0.2.2",
"@stdlib/math-base-special-roundn": "^0.2.2",
"@stdlib/random-base-normal": "^0.2.1",
"@stdlib/string-base-kebabcase": "^0.2.2",
"@stdlib/string-format": "^0.2.2",
"@stdlib/utils-compact-adjacency-matrix": "^0.2.1",
"@stdlib/utils-copy": "^0.2.2",
"@stdlib/utils-keys": "^0.2.2",
"@stdlib/utils-lowercase-keys": "^0.2.2",
"@stdlib/utils-merge": "^0.2.2",
"@stdlib/utils-omit": "^0.2.2",
"@stdlib/utils-omit-by": "^0.2.2",
"@stdlib/utils-papply": "^0.2.2",
"@stdlib/utils-pick": "^0.2.2",
"@svgdotjs/svg.js": "^3.2.4",
"@yet3/svg2jspdf": "^1.0.1",
"ajv": "^8.17.1",
"chalk": "^4.1.2",
"figlet": "^1.6.0",
"gradient-string": "^2.0.2",
"ora": "^5.4.1",
"boxen": "^5.1.2",
"cli-table3": "^0.6.3",
"align-text": "^1.0.2",
"color-convert": "^3.1.0",
"debug": "^4.4.1",
"jsonrepair": "^3.12.0",
"jspdf": "^3.0.1",
"mathjax-full": "^3.2.2",
"moo": "^0.5.2",
"nearley": "^2.20.1",
"openai": "^5.8.2",
"semver-compare": "^1.0.0",
"sharp": "^0.34.2",
"sharp-pdf": "^0.1.3",
"svd-js": "^1.1.1",
"svgdom": "^0.1.21",
"table": "^6.9.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.27.5",
"dedent": "^1.6.0",
"eslint": "^8.57.1",
"json-schema-to-typescript": "^13.1.2",
"markdown-it": "^13.0.2",
"markdown-it-anchor": "^9.2.0",
"tailwindcss": "^3.4.17",
"typedoc": "^0.28.7"
},
"keywords": [
"graphmaker",
"text-to-graph",
"graphing",
"graph",
"dag",
"ai",
"llms",
"llm",
"nlp",
"visualization",
"viz",
"ai-tools",
"gpt",
"graph-software"
]
}