-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "lumentis",
"version": "0.2.4",
"author": "Hrishi Olickel <twitter-@hrishioa> (https://olickel.com)",
"description": "Create awesome docs from your transcripts, notes and documents in seconds, ready to deploy.",
"license": "by-nc-4.0",
"dependencies": {
"@anthropic-ai/sdk": "^0.19.0",
"@anthropic-ai/tokenizer": "^0.0.4",
"@google/generative-ai": "^0.11.2",
"@inquirer/prompts": "^4.3.0",
"cross-spawn": "^7.0.3",
"openai": "^4.47.1",
"typescript": "^5.4.3",
"youtube-transcript": "^1.1.0"
},
"engines": {
"node": ">=18.17.0"
},
"engineStrict": true,
"devDependencies": {
"@biomejs/biome": "latest",
"@swc/core": "^1.4.8",
"@types/bun": "latest",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^20.11.30",
"tsup": "latest"
},
"main": "dist/app.cjs",
"bin": {
"lumentis": "dist/app.cjs"
},
"scripts": {
"run": "bun src/app.ts",
"package": "tsup",
"check": "biome check --apply ."
},
"files": ["dist"],
"type": "module",
"peerDependencies": {
"typescript": "^5.0.0"
}
}