-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.63 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
{
"name": "reeleel",
"version": "0.3.0",
"private": true,
"type": "module",
"description": "Local-first, FOSS youth-sports video intelligence. Import a game, identify your athlete, get a highlight reel.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/profullstack/reeleel.git"
},
"homepage": "https://github.com/profullstack/reeleel#readme",
"bugs": {
"url": "https://github.com/profullstack/reeleel/issues"
},
"keywords": [
"video",
"sports",
"soccer",
"highlights",
"computer-vision",
"local-first",
"foss",
"ffmpeg"
],
"engines": {
"node": ">=22.5.0"
},
"packageManager": "pnpm@11.18.0",
"scripts": {
"build": "pnpm -r --filter \"./packages/**\" --filter \"./apps/**\" build",
"start": "HOST=${HOST:-0.0.0.0} pnpm --filter @reeleel/web start",
"cli": "pnpm --filter @reeleel/cli exec tsx src/index.ts",
"dev": "pnpm --filter @reeleel/cli dev",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"db:migrate": "node scripts/db-migrate.mjs",
"db:status": "node scripts/db-migrate.mjs --status",
"typecheck": "pnpm -r typecheck",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"precommit": "pnpm lint && pnpm typecheck && pnpm test:run"
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"@libsql/client": "^0.17.4",
"@types/node": "^25.0.6",
"eslint": "^9.39.0",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.0",
"vitest": "^4.0.17"
}
}