-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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
{
"name": "@themaximalist/thinkabletype",
"version": "0.2.0",
"description": "Knowledge Graph Toolkit",
"homepage": "https://thinkabletype.com",
"repository": "themaximal1st/thinkabletype",
"type": "module",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "vitest test"
},
"bin": {
"thinkabletype": "src/cli.js"
},
"keywords": [
"mind mapping",
"knowledge graph",
"hypertext",
"hypergraph"
],
"author": "The Maximalist",
"license": "MIT",
"dependencies": {
"@themaximalist/llm.js": "^0.6.5",
"dotenv-extended": "^2.9.0",
"lodash": "^4.17.21",
"papaparse": "^5.4.1",
"slugify": "^1.6.6",
"uuid": "^9.0.1"
},
"devDependencies": {
"esm": "^3.2.25",
"nodemon": "^3.0.3",
"ts-node": "^10.9.2",
"vitest": "^1.2.2"
},
"peerDependencies": {
"@xenova/transformers": "^2.15.0"
},
"peerDependenciesMeta": {
"@xenova/transformers": {
"optional": true
}
}
}