-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
72 lines (72 loc) · 1.51 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
{
"name": "amaribot.js",
"version": "2.1.0",
"description": "A node.js wrapper for the AmariBot API",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "unbuild",
"clean": "rimraf dist",
"docs": "typedoc",
"lint": "eslint . --fix",
"test": "vitest run",
"changeset": "changeset add",
"publish": "changeset version && pnpm run build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amaribot/amaribot.js.git"
},
"keywords": [
"amaribot",
"discord",
"leveling",
"api"
],
"files": [
"dist"
],
"author": {
"name": "Shadow",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/amaribot/amaribot.js/issues"
},
"homepage": "https://amaribot.js.org",
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/ms": "^0.7.31",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"rimraf": "^5.0.0",
"typedoc": "^0.24.0",
"typescript": "^5.0.0",
"unbuild": "^1.1.2",
"vitest": "^0.30.0"
},
"dependencies": {
"@sapphire/async-queue": "^1.5.0",
"ms": "^2.1.3",
"node-fetch": "^2.6.12"
},
"engines": {
"node": ">=16.17.1"
},
"volta": {
"node": "16.20.0"
}
}