-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.59 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
{
"name": "diagen",
"version": "0.0.7",
"author": "Hrishi Olickel <twitter-@hrishioa> (https://olickel.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/southbridgeai/diagen.git"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"bin": {
"diagen": "./dist/run.js"
},
"devDependencies": {
"@swc/core": "^1.7.26",
"@types/bun": "^1.1.10",
"@types/node": "^22.7.4",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"description": "Create beautiful, reflective diagrams from code and data.",
"files": [
"dist",
"package.json"
],
"license": "Apache-2.0",
"scripts": {
"build": "tsup src/index.ts src/run.ts --format cjs,esm --dts && tsc --emitDeclarationOnly && tsc --emitDeclarationOnly --declaration --declarationDir dist && mv dist/index.d.ts dist/index.d.mts && cp dist/index.d.mts dist/index.d.cts"
},
"type": "module",
"types": "./dist/index.d.cts",
"dependencies": {
"@anthropic-ai/sdk": "^0.28.0",
"@anthropic-ai/tokenizer": "^0.0.4",
"@google/generative-ai": "^0.21.0",
"@inquirer/prompts": "^7.0.0",
"@types/glob": "^8.1.0",
"cli-progress": "^3.12.0",
"dotenv": "^16.4.5",
"glob": "^11.0.0",
"open": "^10.1.0",
"openai": "^4.67.1",
"ora": "^8.1.0",
"sharp": "^0.33.5",
"tip20": "^0.0.5",
"uuid": "^10.0.0"
}
}