forked from hrishioa/lumentis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 932 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
{
"name": "lumentis",
"version": "0.0.20",
"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",
"@inquirer/prompts": "^4.3.0",
"cross-spawn": "^7.0.3",
"typescript": "^5.4.3"
},
"devDependencies": {
"@biomejs/biome": "latest",
"@swc/core": "^1.4.8",
"@types/node": "^20.11.30",
"@types/bun": "latest",
"@types/cross-spawn": "^6.0.6",
"tsup": "^8.0.2"
},
"main": "dist/app.js",
"bin": {
"lumentis": "dist/app.js"
},
"scripts": {
"run": "bun src/app.ts",
"package": "tsup",
"check": "biome check --apply ."
},
"files": ["dist"],
"type": "module",
"peerDependencies": {
"typescript": "^5.0.0"
}
}