-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 920 Bytes
/
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
{
"name": "discord-embedbuilder",
"version": "4.0.0",
"description": "Build embeds with multiple pages easily for discord.js",
"main": "out/index.js",
"types": "out/index.d.ts",
"scripts": {
"build": "tsc",
"build-doc": "typedoc --options ./typedoc.json",
"check": "npm publish --dry-run",
"lint": "eslint . --ext .ts"
},
"keywords": [
"discord.js",
"embeds",
"discord"
],
"author": "Muricans",
"homepage": "https://github.com/muricans/discord-embedbuilder#readme",
"repository": "github:muricans/discord-embedbuilder",
"license": "MIT",
"dependencies": {
"discord.js": "^14.6.0"
},
"devDependencies": {
"@types/node": "^16.6.0",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"typedoc": "^0.22.9",
"typedoc-plugin-no-inherit": "^1.3.1",
"typescript": "^4.7.4"
}
}