-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 924 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": "bot",
"version": "0.0.0",
"description": "discord dice rolling bot",
"main": "index.js",
"author": "anna murphy",
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.ts",
"format": "prettier --write \"**/*.+(js|ts|json)\"",
"build": "rm -rf dist && rollup -c --bundleConfigAsCjs",
"dev": "node dist/index.cjs"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.2.4",
"rollup": "^4.9.5",
"rollup-plugin-dts": "^6.1.0",
"tslib": "^2.6.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"dependencies": {
"discord.js": "^14.14.1",
"dotenv": "^16.3.1"
}
}