-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.14 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": "mashujs",
"version": "2.0.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "dist/exportDocs.js",
"license": "MIT",
"scripts": {
"build": "tsc && npx prettier --write dist/",
"prepare": "tsc && npx prettier --write dist/",
"docs": "npx typedoc && node docs.js",
"lint": "eslint src"
},
"files": [
"dist/*",
"mashurc.schema.json"
],
"repository": {
"type": "git",
"url": "https://github.com/EpokTarren/mashu.git"
},
"homepage": "https://mashu.tarren.moe/",
"bugs": {
"url": "https://github.com/EpokTarren/mashu/issues",
"email": "[email protected]"
},
"author": {
"name": "Tarren",
"email": "[email protected]",
"url": "http://tarren.moe"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"discord.js": "^13.1.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-tsdoc": "^0.2.14",
"prettier": "^2.2.1",
"typedoc": "^0.21.6",
"typedoc-plugin-markdown": "^3.10.4",
"typescript": "^4.2.3"
}
}