-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 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
{
"name": "pedchicken",
"version": "3.0.0",
"description": "ALTTPR Seed Rolling bot for Discord, Racetime, etc",
"main": "./dist/index.js",
"scripts": {
"clean": "tsc --build --clean",
"build": "bun run clean && tsc --project tsconfig.json",
"start": "bun run start:bot",
"start:bot": "bun run build && bun --enable-source-maps dist/index.js",
"debug": "bun run build && cross-env NODE_DEV=true nodemon src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AVIANART/PedChicken"
},
"author": "hiimcody1",
"license": "MIT",
"bugs": {
"url": "https://github.com/AVIANART/PedChicken/issues"
},
"homepage": "https://github.com/AVIANART/PedChicken#readme",
"dependencies": {
"cross-env": "^7.0.3",
"discord.js": "^14.16.1",
"rtgg-bot": "file:../rtgg-bot",
"tiny-typed-emitter": "^2.1.0"
},
"devDependencies": {
"@types/node": "^22.5.4",
"eslint": "^9.10.0",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}