-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.35 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
{
"name": "discuss-on-discord",
"version": "1.1.0",
"private": true,
"description": "A GitHub action that creates a thread on Discord for every issue",
"main": "build/index.js",
"scripts": {
"build": "ncc build src/index.ts --minify --out build",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "gts lint",
"clean": "gts clean",
"fix": "gts fix",
"prepare": "husky",
"posttest": "npm run lint",
"prebuild": "npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EndBug/discuss-on-discord.git"
},
"keywords": [
"github",
"discord",
"github-actions",
"actions",
"issues",
"automation",
"ci",
"workflow",
"hacktoberfest"
],
"author": "Federico Grandi <frgandi30@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/EndBug/discuss-on-discord/issues"
},
"homepage": "https://github.com/EndBug/discuss-on-discord#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@types/node": "^20.x.x",
"@vercel/ncc": "^0.38.2",
"all-contributors-cli": "^6.26.1",
"discord.js": "^14.16.3",
"gts": "^5.3.0",
"husky": "^9.1.6",
"typescript": "^5.6.2"
},
"devDependencies": {
"eslint-plugin-prettier": "^5.2.1"
},
"engines": {
"node": ">=20"
}
}