-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
{
"name": "picbot-engine",
"version": "2.4.0",
"description": "discord.js bot engine",
"type": "module",
"module": "./dist/index.js",
"exports": {
"import": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "rm ./dist/ -r && npm link",
"prepare": "npm run build"
},
"keywords": [
"discord",
"bot",
"nodejs",
"boilerplate",
"engine"
],
"repository": {
"type": "git",
"url": "https://github.com/Picalines/picbot-engine"
},
"bugs": {
"url": "https://github.com/Picalines/picbot-engine/issues"
},
"author": "Picalines",
"license": "MIT",
"engines": {
"node": ">=14.15.4"
},
"dependencies": {
"discord.js": "^12.3.1"
},
"devDependencies": {
"@types/node": "^13.13.12",
"@types/ws": "^7.4.5",
"typescript": "^4.1.3"
}
}