-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.83 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
{
"name": "@cvyl/dishook",
"version": "1.0.7",
"description": "Simple Discord Webhook Wrapper",
"repository": {
"type": "git",
"url": "https://github.com/cvyl/dishook.git"
},
"bugs": {
"url": "https://github.com/cvyl/dishook/issues"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:ts": "tsc --build",
"build:docs": "typedoc --out docs src/index.ts",
"build:pack": "npm run build:ts && npm run build:docs && npm pack",
"build:all": "npm run build:ts && npm run build:docs",
"build": "npm run build:all && npm run build:pack",
"lint": "eslint --ext .ts src",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --write .",
"test:node": "node test/index.js",
"test:ts": "tsc --noEmit test.ts",
"test": "npm run test:node && npm run test:ts",
"push:npm": "npm version patch && npm run build:all && npm publish",
"push:github": "npm run build:all && git add . && git commit -m \"[/] Publish\" && git push -u origin main",
"push": "npm run push:github && npm run push:npm"
},
"keywords": [
"discord",
"webhook",
"discord-webhook",
"discord-webhook-wrapper",
"discord-webhook-ts",
"discord-webhook-typescript",
"dishook"
],
"author": {
"email": "[email protected]",
"name": "cvyl",
"url": "https://cvyl.me"
},
"license": "MIT",
"dependencies": {
"axios": "^1.7.4"
},
"devDependencies": {
"@types/eslint": "^8.56.0",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"lint-staged": "^15.2.0",
"node": "^21.2.0",
"prettier": "^3.1.1",
"readme-md-generator": "^1.0.0",
"tslib": "^2.6.2",
"typedoc": "^0.25.4"
}
}