-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1 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
{
"name": "murmur-bots",
"version": "1.0.0",
"description": "Utilities for using Murmur in nodejs",
"main": "index.js",
"repository": "https://github.com/ideal-lab5/murmur-bots",
"scripts": {
"discord": "node src/discord.js",
"twitch": "node src/twitch.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"author": "Ideal Labs <hello@idealabs.network>",
"license": "Apache-2.0",
"dependencies": {
"@ideallabs/murmur.js": "^0.1.0",
"@polkadot/api": "^14.0.1",
"axios": "^1.7.7",
"bn.js": "^5.2.1",
"crypto": "^1.0.1",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"tmi.js": "^1.8.5",
"typescript": "^5.6.3"
},
"type": "module",
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"husky": "^8.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": [
"prettier --write"
]
}
}