-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.72 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
{
"name": "@vermaysha/discord-webhook",
"version": "1.4.0",
"description": "Discord Webhook built using TypeScript which supports Browser and Node",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:tsc": "tsc --build --force",
"build:docs": "typedoc",
"build": "npm run build:tsc && npm run build:docs",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src --ignore-path .gitignore --ext .js,.ts,.jsx,.tsx",
"lint:fix": "eslint ./src --fix --ext .js,.ts,.jsx,.tsx",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/vermaysha/discord-webhook.git"
},
"keywords": [
"discord-webhook"
],
"author": {
"email": "[email protected]",
"url": "https://vermaysha.com",
"name": "Ashary Vermaysha"
},
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/vermaysha/discord-webhook/issues"
},
"homepage": "https://github.com/vermaysha/discord-webhook#readme",
"files": [
"dist/**/*"
],
"lint-staged": {
"*.{ts,js}": "npm run lint",
"*.{ts,js,json}": "npm run format"
},
"devDependencies": {
"@types/eslint": "^8.4.9",
"@types/md5": "^2.3.2",
"@types/node": "^18.11.8",
"@types/prettier": "^2.7.1",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"tslib": "^2.4.0",
"typedoc": "^0.23.19",
"typescript": "^4.8.4"
},
"dependencies": {
"axios": "^1.1.3"
}
}