-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "hook.gg",
"version": "2.1.0",
"description": "A simple library that simplifies posting webhooks on discord",
"repository": "https://github.com/redleague/hookgg",
"license": "MIT",
"author": "Red League",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "npm run lint && npm run compile",
"compile": "tsc --build tsconfig.json",
"lint": "eslint . --ext .ts",
"docs": "typedoc src/index.ts",
"start:dev": "ts-node src/index.ts"
},
"eslintConfig": {
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": "@hazmi35/eslint-config/typescript"
},
"devDependencies": {
"@hazmi35/eslint-config": "^7.0.1",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^8.2.0",
"ts-node": "^10.4.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
},
"dependencies": {
"@aero/centra": "^1.0.8"
},
"engines": {
"node": ">=16.6.0"
}
}