-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 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
{
"name": "notsobot-ts",
"version": "0.0.1",
"description": "notsobot but in ts",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"dependencies": {
"@sentry/node": "^8.47.0",
"chrono-node": "^2.7.7",
"detritus-client": "^0.17.0-beta.72",
"emoji-aware": "^3.1.0",
"flexsearch": "^0.7.43",
"juration": "^0.1.1",
"mathjs": "^14.0.1",
"minisearch": "^7.1.1",
"moment": "^2.30.1",
"moment-duration-format": "^2.3.2",
"moment-timezone": "^0.5.46",
"openai": "^4.77.0",
"opusscript": "^0.1.1",
"redis": "^4.7.0",
"typescript": "^5.7.2",
"wav": "^1.0.2"
},
"overrides": {
"whatwg-url": "13.0.0"
},
"devDependencies": {
"@types/moment-duration-format": "^2.2.6",
"@types/node": "^22.10.2",
"@types/wav": "^1.0.4"
},
"scripts": {
"build": "tsc",
"launch": "node ./lib/src/run",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cakedan/notsobot.ts.git"
},
"keywords": [
"typescript",
"notsobot"
],
"author": "cakedan",
"license": "MIT",
"bugs": {
"url": "https://github.com/cakedan/notsobot.ts/issues"
},
"homepage": "https://github.com/cakedan/notsobot.ts#readme"
}