-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1017 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
{
"name": "discord-welcome-action",
"repository": "[email protected]:luludotdev/discord-welcome-action.git",
"author": "Jack Baron <[email protected]>",
"private": true,
"license": "APACHE-2.0",
"scripts": {
"postinstall": "husky install",
"build": "tsup",
"dev": "npm run build -- --watch",
"check": "tsc --noEmit --skipLibCheck",
"lint": "prettier --check . && eslint src --ext ts",
"format": "prettier --write . && eslint src --ext ts --fix",
"fmt": "npm run format",
"test": "npm run check && npm run lint",
"dist": "npm run test && npm run build"
},
"engines": {
"node": ">=16.9.0"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@luludev/eslint-config": "^0.5.1",
"@luludev/splitmessage": "^0.2.3",
"@types/node": "^20.9.0",
"discord.js": "^14.14.1",
"eslint": "^8.53.0",
"husky": "^8.0.3",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"yaml": "^2.3.4"
}
}