-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 983 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
35
36
37
38
39
40
41
42
43
44
45
{
"name": "embed-table",
"version": "4.2.3",
"description": "Easily make nice looking text tables for Discord's embed fields and descriptions.",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"lint": "eslint --cache --fix",
"start": "npm run lint && npm run build && node .",
"check": "npm run lint && tsc --noEmit",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TreeFarmer/embed-table.git"
},
"keywords": [
"discord",
"discordjs",
"messageembed",
"table"
],
"author": {
"email": "[email protected]",
"name": "Luyx LLC",
"url": "https://luyx.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/TreeFarmer/embed-table/issues"
},
"homepage": "https://embed-table.treefarmer.xyz",
"devDependencies": {
"@types/node": "^18.13.0",
"eslint": "^8.33.0",
"typedoc": "^0.23.24",
"typescript": "^4.9.5"
},
"directories": {
"doc": "docs"
}
}