-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.54 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.54 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
{
"name": "preparr",
"version": "0.19.6",
"description": "A Docker sidecar that fully automates Servarr initialization - from deployment to ready-to-use instances with zero manual setup",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "bun run --watch src/index.ts",
"build": "bun build src/index.ts --target bun --outdir dist",
"start": "bun run dist/index.js",
"test": "bun test src/",
"test:watch": "bun test --watch src/",
"test:e2e": "bun test tests/e2e/ --timeout 300000",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"lint:tf": "tflint --init && tflint --recursive",
"lint:tf:check": "tflint --recursive",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"ci": "bun run lint && bun run typecheck && bun run build && bun run test",
"semantic-release": "semantic-release",
"docker:up": "docker compose up --build -d",
"docker:down": "docker compose down",
"docker:reset": "docker compose down -v && docker system prune -f",
"docker:logs": "docker compose logs -f",
"test:docker": "bun run docker:reset && docker compose up --build",
"k8s:deploy": "helm install preparr-test ./helm/preparr -f helm/preparr/examples/full-stack-values.yaml --namespace preparr-test --create-namespace",
"k8s:cleanup": "helm uninstall preparr-test --namespace preparr-test && kubectl delete namespace preparr-test",
"k8s:test": "bun run k8s:cleanup; bun run k8s:deploy",
"docs:dev": "cd docs && bun run dev",
"docs:build": "cd docs && bun run build",
"docs:preview": "cd docs && bun run preview"
},
"keywords": [
"servarr",
"radarr",
"sonarr",
"docker",
"sidecar",
"automation",
"kubernetes",
"docker-compose",
"iac",
"infrastructure-as-code"
],
"author": "Robbe Verhelst",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/robbeverhelst/Preparr.git"
},
"bugs": {
"url": "https://github.com/robbeverhelst/Preparr/issues"
},
"homepage": "https://github.com/robbeverhelst/Preparr#readme",
"dependencies": {
"tsarr": "^2.7.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@types/bun": "^1.3.12",
"@types/node": "^25.6.0",
"bun-types": "^1.3.13",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=24.14.0",
"bun": ">=1.0.0"
}
}