-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
34 lines (34 loc) · 974 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
{
"name": "github-interaction-worker",
"version": "1.0.0",
"description": "CF Worker for a Discord interaction to query GitHub",
"main": "index.js",
"scripts": {
"build": "tsc",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"dev": "NODE_ENV=development yarn build"
},
"author": "almostSouji",
"type": "module",
"devDependencies": {
"@cloudflare/workers-types": "^4.20230914.0",
"@types/luxon": "^3.3.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-neon": "0.1.54",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
},
"dependencies": {
"discord-api-types": "^0.37.56",
"discord-verify": "^1.2.0",
"luxon": "^3.4.3"
},
"license": "MIT",
"packageManager": "yarn@3.6.3"
}