-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.87 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "devtoolbot",
"description": "Developer tool bot for Discord",
"author": "eve0415 <[email protected]>",
"homepage": "https://github.com/eve0415/DevTool#readme",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/eve0415/DevTool.git"
},
"bugs": {
"url": "https://github.com/eve0415/DevTool/issues"
},
"private": true,
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=18.11.0"
},
"scripts": {
"build": "./build.js",
"build:helper": "./helper/build.js",
"watch": "yarn build --watch",
"check": "tsc",
"start": "node -r dotenv/config --enable-source-maps ./out/index.js",
"dev": "yarn watch & node --watch -r dotenv/config --enable-source-maps ./out/index.js",
"lint": "eslint --fix . & prettier --write \"./**/*.{ts,tsx,js,json}\"",
"lint:ci": "eslint lint & prettier --check \"./**/*.{ts,tsx,js,json}\"",
"sdk": "yarn dlx @yarnpkg/sdks"
},
"dependencies": {
"axios": "^1.3.6",
"axios-cache-interceptor": "^1.0.1",
"bufferutil": "^4.0.7",
"coffeescript": "^2.7.0",
"discord.js": "^14.9.0",
"erlpack": "^0.1.4",
"fastify": "^4.17.0",
"fuse.js": "^6.6.2",
"log4js": "^6.9.1",
"prettier": "^2.8.8",
"sass": "^1.62.1",
"typescript": "^5.0.4",
"utf-8-validate": "^6.0.3",
"zlib-sync": "^0.1.8"
},
"devDependencies": {
"@types/coffeescript": "^2.5.2",
"@types/node": "^18.16.2",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"dotenv": "^16.0.3",
"esbuild": "^0.17.18",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"pretty-bytes": "^6.1.0",
"rimraf": "^5.0.0"
}
}