-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.95 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
{
"name": "apple-pie",
"version": "1.0.5",
"versionName": "Crimson Reboot",
"description": "Apple Pie bot, rebooted.",
"main": "dist/src/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "rollup -c",
"dev": "ts-node-esm --project ./tsconfig.json --files src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tockawaffle/Apple-Pie-Bot.git"
},
"types": "./types/index.ts",
"keywords": [
"Apple",
"Pie",
"Discord",
"Bot",
"Bot",
"ChatGpt",
"Apple",
"Pie"
],
"author": "Nixy",
"license": "AGPL-3.0",
"type": "module",
"bugs": {
"url": "https://github.com/tockawaffle/Apple-Pie-Bot/issues"
},
"homepage": "https://github.com/tockawaffle/Apple-Pie-Bot#readme",
"dependencies": {
"@discord-player/extractor": "^4.4.5",
"discord-player": "^6.6.6",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"gpt-3-encoder": "^1.1.4",
"mediaplex": "^0.0.8",
"mongoose": "^8.0.1",
"openai": "^4.19.0",
"uuid": "^9.0.1",
"youtube-ext": "^1.1.16"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/node": "^20.9.1",
"rollup": "^4.4.1",
"rollup-plugin-typescript2": "^0.36.0"
},
"nodemonConfig": {
"ignore": [
"node_modules",
"dist"
],
"watch": [
"src",
"types",
"modules",
"package.json"
],
"ext": "ts,json",
"exec": "npm run dev",
"execMap": {
"ts": "ts-node"
},
"verbose": true,
"execOptions": {
"env": {
"NODE_ENV": "development"
}
}
}
}