-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
{
"name": "dupliket",
"version": "1.0.0",
"private": true,
"description": "Find possible references of duplicates from new issues and discussions",
"main": "dist/main.js",
"scripts": {
"build": "rm -rf dist && esbuild src/main.ts --outfile=dist/main.js --bundle --platform=node --target=node20 --minify --sourcemap && :",
"lint": "eslint src/**",
"lint:fix": "eslint src/** --fix",
"prepare": "husky install"
},
"keywords": [
"github",
"actions"
],
"author": "Cristopher Namchee",
"license": "MIT",
"devDependencies": {
"@types/dedent": "^0.7.0",
"@types/mustache": "^4.2.3",
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"bun-types": "^1.0.2",
"esbuild": "^0.19.3",
"eslint": "^8.48.0",
"eslint-config-namchee": "^1.0.18",
"eslint-config-prettier": "^9.0.0",
"eslint-config-xo": "^0.43.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.0",
"lint-staged": "^15.0.1",
"prettier": "^3.0.2",
"prettier-eslint": "^15.0.1",
"typescript": "5.1.6"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"dedent": "^0.7.0",
"mustache": "^4.2.0",
"openai": "^4.10.0",
"remark": "^14.0.3",
"remark-gfm": "^3.0.1",
"strip-markdown": "^5.0.1"
}
}