-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.97 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
65
66
67
68
69
{
"name": "reviewer",
"private": true,
"version": "0.1.0",
"type": "module",
"exports": "./index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "wrangler dev src/index.mts",
"deploy": "wrangler deploy src/index.mts --env production",
"build": "wrangler deploy --dry-run --outdir=dist",
"lint": "eslint src --ext js,ts,mts --max-warnings 0 ",
"fix": "eslint src --ext js,ts,mts --max-warnings 0 --fix",
"test": "vitest",
"coverage": "vitest --coverage",
"typecheck": "tsc --pretty --noEmit",
"format": "prettier --write .",
"prepare": "husky install"
},
"lint-staged": {
"*.@(ts|tsx|mts)": "bash -c 'tsc --skipLibCheck --noEmit'",
"*.@(ts|tsx|mts|js|jsx|mjs)": "eslint --max-warnings 0",
"*.@(ts|tsx|mts|js|jsx|mjs|json|jsonc|json5|md|mdx|yaml|yml)": "prettier --write"
},
"nodemonConfig": {
"delay": 100
},
"dependencies": {
"@cloudflare/workers-types": "^4.20230628.0",
"@octokit/auth-app": "^5.0.6",
"@octokit/rest": "^19.0.13",
"@octokit/types": "^10.0.0",
"@types/dedent": "^0.7.0",
"chatgpt": "^5.2.5",
"dotenv": "^16.3.1",
"esm": "^3.2.25",
"octokit": "^2.1.0",
"toucan-js": "^3.1.0",
"ts-dedent": "^2.2.0",
"wrangler": "^3.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitest/coverage-c8": "^0.32.2",
"@vitest/coverage-v8": "^0.33.0",
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vitest": "^0.2.6",
"husky": "=8.0.3",
"lint-staged": "=13.2.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"typescript": "^5.1.5",
"vitest": "^0.33.0",
"vitest-environment-miniflare": "^2.14.0"
},
"packageManager": "yarn@3.6.0",
"volta": {
"node": "20.4.0",
"yarn": "3.6.0"
}
}