-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.07 KB
/
package.json
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
{
"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/",
"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 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.7",
"@stdlib/assert-is-array": "^0.0.7",
"@stdlib/assert-is-string": "^0.0.8",
"@stdlib/math-base-special-deg2rad": "^0.0.8",
"@stdlib/math-base-special-roundn": "^0.0.6",
"@stdlib/random-base-normal": "^0.0.6",
"@stdlib/string-base-kebabcase": "^0.0.2",
"@stdlib/string-format": "^0.0.3",
"@stdlib/utils-compact-adjacency-matrix": "^0.0.6",
"@stdlib/utils-copy": "^0.0.7",
"@stdlib/utils-keys": "^0.0.7",
"@stdlib/utils-lowercase-keys": "^0.0.8",
"@stdlib/utils-merge": "^0.0.7",
"@stdlib/utils-omit": "^0.0.8",
"@stdlib/utils-omit-by": "^0.0.8",
"@stdlib/utils-papply": "^0.0.10",
"@stdlib/utils-pick": "^0.0.8",
"@svgdotjs/svg.js": "^3.2.0",
"@yet3/svg2jspdf": "^1.0.1",
"ajv": "^8.12.0",
"align-text": "^1.0.2",
"color-convert": "^2.0.1",
"debug": "^4.3.4",
"jsonrepair": "^3.2.0",
"jspdf": "^2.5.1",
"mathjax-full": "^3.2.2",
"moo": "^0.5.2",
"nearley": "^2.20.1",
"openai": "^3.3.0",
"semver-compare": "^1.0.0",
"sharp": "^0.32.2",
"sharp-pdf": "^0.1.3",
"svd-js": "^1.1.1",
"svgdom": "^0.1.14",
"table": "^6.8.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.7",
"dedent": "^1.0.1",
"eslint": "^8.44.0",
"json-schema-to-typescript": "^13.0.2",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.7",
"tailwindcss": "^3.3.2",
"typedoc": "^0.24.8"
},
"keywords": [
"graphmaker",
"text-to-graph",
"graphing",
"graph",
"dag",
"ai",
"llms",
"llm",
"nlp",
"visualization",
"viz",
"ai-tools",
"gpt",
"graph-software"
]
}