-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
40 lines (40 loc) · 1022 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
36
37
38
39
40
{
"name": "magiskbot",
"version": "1.0.0",
"description": "Magisk Automation",
"main": "dist/index.js",
"type": "module",
"engines": {
"node": "v22.x"
},
"scripts": {
"start": "esrun src/index.ts",
"build": "rm -rf dist && tsc",
"prod": "node dist/index.js"
},
"author": "topjohnwu",
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/node": "^20.14.12",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"esrun": "^3.2.26",
"prettier": "3.3.3",
"typescript": "^5.5.4"
},
"dependencies": {
"@octokit/rest": "^21.0.1",
"@octokit/types": "^13.5.0",
"@octokit/webhooks": "^13.3.0",
"@octokit/webhooks-types": "^7.5.1",
"fastify": "^4.28.1"
},
"prettier": {
"singleQuote": true
}
}