-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
78 lines (78 loc) · 2.41 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "dbots",
"version": "11.0.0",
"description": "Discord bot list poster and stats retriever",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"unpkg": "./webpack/dbots.min.js",
"jsdelivr": "./webpack/dbots.min.js",
"scripts": {
"build": "([ ! -d \"lib/\" ] || rm -r lib/*) && npx tsc",
"build:source": "npx ts-node scripts/list-index",
"build:prepare": "[ -d \"lib/\" ] || npm run build",
"changelog": "ts-node scripts/changelog && npm i --package-lock-only",
"docs": "ts-node scripts/docs",
"gpr": "ts-node scripts/gpr",
"lint": "npx eslint --ext .ts ./src",
"lint:fix": "npx eslint --ext .ts ./src --fix",
"prepare": "npx husky && npm run build:prepare",
"prepublishOnly": "([ -d \"lib/\" ] || (echo \"lib folder does not exist\" && exit 1)) && npm run lint:fix && npm run webpack",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"webpack": "ts-node scripts/services-wp && cross-env NODE_ENV=production NODE_OPTIONS=--openssl-legacy-provider webpack && rm -r .tmp"
},
"lint-staged": {
"*.ts": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbots-pkg/dbots.js.git"
},
"keywords": [
"api",
"discord",
"discordapp",
"discord bots",
"discord bot",
"wrapper"
],
"author": "Snazzah",
"license": "MIT",
"bugs": {
"url": "https://github.com/dbots-pkg/dbots.js/issues"
},
"homepage": "https://dbots.js.org",
"dependencies": {
"axios": "^1.2.6",
"promise.allsettled": "^1.0.2",
"qs": "^6.11.0"
},
"devDependencies": {
"@discordjs/collection": "^1.0.0",
"@types/jest": "^29.4.0",
"@types/node": "^12.20.16",
"@types/promise.allsettled": "^1.0.3",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"cross-env": "^7.0.2",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^28.3.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.0.7",
"jest": "^29.4.1",
"jsdoc-typeof-plugin": "^1.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.0.3",
"terser-webpack-plugin": "^5.1.1",
"ts-docgen": "github:dbots-pkg/ts-docgen#v2",
"ts-jest": "^29.0.5",
"ts-loader": "^9.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}