-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.22 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.22 KB
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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@muhammedaksam/easiarr",
"version": "1.4.0",
"description": "TUI tool for generating docker-compose files for the *arr media ecosystem with 41 apps, TRaSH Guides best practices, VPN routing, and Traefik reverse proxy support",
"module": "src/index.ts",
"type": "module",
"bin": {
"easiarr": "./src/index.ts"
},
"files": [
"src"
],
"author": "Muhammed Mustafa AKŞAM <info@muhammedaksam.com.tr> (https://github.com/muhammedaksam)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/muhammedaksam/easiarr.git"
},
"bugs": {
"url": "https://github.com/muhammedaksam/easiarr/issues"
},
"homepage": "https://github.com/muhammedaksam/easiarr#readme",
"keywords": [
"arr",
"radarr",
"sonarr",
"prowlarr",
"docker",
"docker-compose",
"trash-guides",
"tui",
"opentui",
"cli",
"media-server"
],
"scripts": {
"dev": "bun run --watch src/index.ts",
"dev:debug": "bun run dev --debug",
"build": "bun build src/index.ts --outdir dist --target bun",
"typecheck": "bun x tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"test": "jest",
"test:watch": "jest --watch",
"check": "bun run typecheck && bun run lint && bun run format:check && bun run test",
"fix": "bun run lint:fix && bun run format",
"migration:create": "bun run scripts/create-migration.ts",
"release": "./scripts/release.sh",
"start": "bun run src/index.ts"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@types/bcrypt": "^6.0.0",
"@types/bun": "latest",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.3",
"eslint": "^10.0.0",
"eslint-plugin-import": "^2.32.0",
"jest": "^30.2.0",
"jiti": "^2.6.1",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"typescript-eslint": "^8.55.0"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"@opentui/core": "^0.1.79",
"bcrypt": "^6.0.0",
"socket.io-client": "^4.8.3",
"yaml": "^2.8.2"
},
"engines": {
"bun": ">=1.0"
}
}