-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 947 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
{
"name": "discord-haikusbot",
"version": "1.2.4",
"description": "I detect haikus",
"type": "module",
"main": "dist/index.js",
"repository": "git@github.com:ducktrshessami/discord-haikusbot.git",
"author": "ducktrshessami",
"license": "MIT",
"scripts": {
"build": "rm -rf dist/ && tsc",
"minify": "node minify.js",
"minbuild": "yarn build && yarn minify",
"start": "node dist/index.js",
"deploy": "node dist/discord/deploy.js"
},
"dependencies": {
"discord.js": "^15.0.0-dev.1739361916-64494137d",
"fast-syllablize": "ducktrshessami/fast-syllablize#v2.1.5",
"node-cmudict": "ducktrshessami/node-cmudict#v2.1.1",
"sequelize": "^6.37.5",
"sqlite3": "^5.1.7"
},
"optionalDependencies": {
"bufferutil": "^4.0.8",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"@types/node": "^22.13.1",
"dotenv": "^16.4.7",
"minify": "^9.2.0",
"typescript": "^5.7.3"
}
}