This repository has been archived by the owner on Aug 6, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
67 lines (67 loc) · 1.84 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
{
"name": "rok-title-keeper",
"version": "0.1.0",
"private": true,
"description": "Rise of Kingdoms bot to manage titles through Discord.",
"keywords": [
"automation",
"ocr",
"adb",
"discord-bot",
"preprocessing",
"rise-of-kingdoms"
],
"homepage": "https://github.com/daniellwdb/rok-title-keeper#readme",
"bugs": {
"url": "https://github.com/daniellwdb/rok-title-keeper/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daniellwdb/rok-title-keeper.git"
},
"license": "MIT",
"author": "Daniell Wijdenbosch <[email protected]>",
"type": "module",
"main": "./src/index.ts",
"scripts": {
"prepare": "husky install",
"start": "tsx watch -r dotenv/config ./src/index.ts | pino-pretty -t \"SYS:yyyy-dd-mm HH:MM:ss\" -i pid"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@prisma/client": "^5.0.0",
"@u4/opencv4nodejs": "^6.5.2",
"adb-ts": "^4.0.4",
"clipboardy": "^3.0.0",
"convict": "^6.2.4",
"discord.js": "^14.11.0",
"pino": "^8.14.2",
"rxjs": "^7.8.1",
"sharp": "^0.32.4",
"tesseract.js": "^4.1.1",
"ts-lib": "^0.0.5",
"write-excel-file": "^1.4.27"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@types/convict": "^6.1.3",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.1",
"dotenv": "^16.3.1",
"eslint": "^8.46.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"pino-pretty": "^10.2.0",
"prettier": "^3.0.0",
"prisma": "^5.0.0",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
}
}