-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.54 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@luckrnx09/abook",
"version": "1.0.2",
"description": "<h1 align=\"center\">⚡ abook⚡</h1> <p align=\"center\"> An AI powered command-line tool for generating any books from scratch</p>",
"bin": {
"abook": "dist/index.js"
},
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"build": "tsup",
"prepare": "yarn run compile",
"pretest": "yarn run compile",
"posttest": "yarn run lint"
},
"tsup": {
"entry": [
"src/cli/index.ts"
],
"clean": true,
"minify": false,
"splitting": true
},
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"ebook",
"book",
"ai",
"writer",
"generator",
"publication",
"abook"
],
"homepage": "https://github.com/luckrnx09/abook",
"repository": {
"type": "git",
"url": "git+https://github.com/luckrnx09/abook.git"
},
"author": {
"name": "luckrnx09",
"email": "luckrnx09@gmail.com",
"url": "https://luckrnx09.com"
},
"license": "MIT",
"devDependencies": {
"@types/node": "20.11.5",
"gts": "^5.3.0",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "~5.4.3"
},
"dependencies": {
"@inquirer/prompts": "^5.0.4",
"@langchain/core": "^0.2.13",
"@langchain/openai": "^0.2.1",
"commander": "^12.1.0",
"console-table-printer": "^2.12.0",
"dotenv-cli": "^7.4.2",
"fast-json-patch": "^3.1.1",
"langchain": "^0.2.0",
"tsup": "^8.1.0",
"zod": "^3.23.8"
}
}