forked from MiscGuild/bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.15 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
{
"name": "bridge-bot",
"version": "1.0.0",
"main": "dist",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc && npm run copy-files",
"clean": "rm -r dist/",
"copy-files": "copyfiles -u 1 src/**/*.png dist/",
"dev": "ts-node-dev --respawn --transpile-only --poll src/index.ts",
"lint:fix": "npm run lint --fix",
"lint": "eslint . --ext .ts,.tsx",
"pm2": "pm2 logs && pm2 start npm --name \"bridge\" -- start",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"setup-files": "node setupFiles.js",
"start": "node .",
"test": "npm run prettier:check && npm run lint && npm run typecheck && npm run build",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"consola": "^2.15.3",
"copyfiles": "^2.4.1",
"discord.js": "^14.6.0",
"dotenv": "^16.0.3",
"mineflayer": "^4.4.0"
},
"devDependencies": {
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.4",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
}
}