-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.63 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.63 KB
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
{
"name": "spice-bot",
"version": "1.0.0",
"description": "A Discord bot for posting Twitch and Bluesky activity",
"exports": "./index.js",
"scripts": {
"build": "rimraf ./build && tsc",
"start": "cross-env NODE_ENV=production node build/index.js",
"start:dev": "cross-env NODE_ENV=development npx tsx watch ./src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"discord",
"twitch",
"bluesky",
"bot"
],
"author": "Devin Spikowski",
"license": "MIT",
"dependencies": {
"@bluesky-social/api": "^0.17.3",
"@twurple/api": "^8.0.3",
"@twurple/auth": "^8.0.3",
"@twurple/common": "^8.0.3",
"@twurple/eventsub-http": "^8.0.3",
"@twurple/eventsub-ngrok": "^8.0.3",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"emittery": "^1.0.1",
"express": "^5.2.1",
"express-session": "^1.17.3",
"highlight.js": "^11.8.0",
"lowdb": "^6.0.1",
"luxon": "^3.4.2",
"multer": "^1.4.5-lts.1",
"randomstring": "^1.3.0",
"ws": "^8.13.0"
},
"devDependencies": {
"@d-fischer/typed-event-emitter": "^3.3.3",
"@swc/core": "^1.3.82",
"@types/ejs": "^3.1.2",
"@types/express": "^5.0.6",
"@types/express-session": "^1.17.7",
"@types/luxon": "^3.3.2",
"@types/multer": "^1.4.7",
"@types/node": "^20.5.9",
"@types/randomstring": "^1.1.8",
"@types/ws": "^8.5.5",
"cross-env": "^7.0.3",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20.0.0"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/vegeta897/spice-bot.git"
}
}