-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
44 lines (44 loc) · 969 Bytes
/
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
{
"name": "mandark",
"version": "0.0.13",
"author": "Hrishi Olickel <twitter-@hrishioa> (https://olickel.com)",
"description": "Super simple, easily modifiable AI Coder",
"repository": {
"type": "git",
"url": "git+https://github.com/hrishioa/mandark.git"
},
"license": "Apache-2.0",
"type": "module",
"dependencies": {
"@anthropic-ai/sdk": "^0.24.3",
"@anthropic-ai/tokenizer": "^0.0.4",
"chalk": "4.1.2",
"fast-glob": "^3.3.2",
"inquirer": "^10.0.3",
"oboe": "^2.1.5",
"openai": "^4.52.7",
"ora": "5.4.1",
"zod": "^3.23.8"
},
"scripts": {
"package": "tsup"
},
"files": [
"dist"
],
"engines": {
"node": ">=18.17.0"
},
"main": "./dist/app.cjs",
"bin": {
"mandark": "dist/app.cjs"
},
"engineStrict": true,
"devDependencies": {
"@swc/core": "^1.7.0",
"@types/bun": "^1.1.6",
"@types/node": "^20.14.11",
"tsup": "^8.2.0",
"typescript": "^5.5.3"
}
}