-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 2.99 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "aid",
"version": "0.0.1",
"type": "module",
"description": "Ai application framework",
"keywords": [
"AID"
],
"author": {
"name": "liukehong"
},
"repository": {
"type": "git",
"url": "https://github.com/cnshsliu/aid"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=8.6.0"
},
"scripts": {
"dev.tsc": "./node_modules/typescript/bin/tsc --watch -p .",
"dev.tsc.once": "./node_modules/typescript/bin/tsc -p .",
"test": "lab --assert @hapi/code",
"start": "shx cp ./README.md src/docs && node build/index.js",
"debug": "node --inspect build/index.js",
"docs": "./node_modules/docker/docker -w -I -x node_modules -s yes -o ../aid-pages "
},
"dependencies": {
"@dqbd/tiktoken": "^1.0.7",
"@hapi/accept": "^6.0.2",
"@hapi/basic": "^7.0.2",
"@hapi/boom": "^10.0.1",
"@hapi/code": "^9.0.3",
"@hapi/good": "^9.0.1",
"@hapi/good-console": "^9.0.1",
"@hapi/good-squeeze": "^6.0.0",
"@hapi/hapi": "^21.3.2",
"@hapi/hoek": "^11.0.2",
"@hapi/inert": "^7.1.0",
"@hapi/lab": "^25.1.3",
"@hapi/podium": "^5.0.1",
"@hapi/vision": "^7.0.3",
"@hapi/wreck": "^18.0.1",
"@mozilla/readability": "^0.4.4",
"@svgdotjs/svg.js": "^3.2.0",
"axios": "^1.5.1",
"axios-better-stacktrace": "^2.1.5",
"bufferutil": "^4.0.7",
"chatgpt": "^5.2.5",
"cheerio": "1.0.0-rc.12",
"constantinople": "^4.0.1",
"cron-parser": "^4.9.0",
"exceljs": "^4.3.0",
"handlebars": "^4.7.8",
"hapi-auth-jwt2": "^10.4.0",
"hapi-auth-wishhouse": "^0.1.1",
"hapi-plugin-websocket": "^2.4.8",
"hapi-swagger": "^17.1.0",
"https-proxy-agent": "^7.0.2",
"ioredis": "^5.3.2",
"jimp": "^0.22.10",
"joi": "^17.11.0",
"jsdom": "^22.1.0",
"jsonwebtoken": "^9.0.2",
"langchain": "^0.0.160",
"lite": "link:@dqbd/tiktoken/lite",
"lodash": "^4.17.21",
"lru-cache": "^10.0.1",
"marked": "^9.1.0",
"metaflow": "^1.0.1",
"moment": "^2.29.4",
"mongoose": "^7.5.4",
"mongoose-gridfs": "^1.3.0",
"mongoose-unique-validator": "^4.0.0",
"mozilla-readability": "^0.1.3",
"mutex-promise": "^0.1.0",
"node-cron": "^3.0.2",
"node-fetch": "^3.3.2",
"nodemailer": "^6.9.5",
"nzh": "^1.0.11",
"openai": "^4.13.0",
"p-queue": "^7.4.1",
"p-timeout": "^6.1.2",
"path": "^0.12.7",
"pdfreader": "^3.0.2",
"puppeteer": "^21.3.7",
"redis": "^4.6.10",
"sanitize-html": "^2.11.0",
"saslprep": "^1.0.3",
"short-uuid": "^4.2.2",
"shx": "^0.3.4",
"sprintf-js": "^1.1.3",
"svgdom": "^0.1.17",
"tencentcloud-sdk-nodejs": "^4.0.699",
"utf-8-validate": "^6.0.3",
"uuid": "^9.0.1",
"ws": "^8.14.2"
},
"private": true,
"main": "build/index",
"typings": "build/index",
"devDependencies": {
"@types/hapi__hapi": "^20.0.13",
"@types/jsonwebtoken": "^9.0.3",
"@types/lodash": "^4.14.199",
"@types/marked": "^5.0.2",
"@types/node": "^20.8.2",
"@types/node-cron": "^3.0.9",
"@types/node-fetch": "^2.6.6",
"@types/sanitize-html": "^2.9.1",
"@types/sprintf-js": "^1.1.2",
"@zerollup/ts-transform-paths": "^1.7.18",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}