-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.07 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 3.07 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
81
{
"name": "flyx",
"version": "3.1.0",
"private": true,
"description": "Flyx 3.0 — Privacy-first streaming platform",
"workspaces": [
"packages/app",
"packages/admin",
"packages/config",
"packages/core",
"packages/db",
"packages/cli",
"packages/desktop",
"packages/extractors",
"packages/player",
"packages/providers",
"packages/shared",
"packages/sync",
"tools/*"
],
"scripts": {
"build": "node ./node_modules/turbo/bin/turbo run build",
"dev": "node ./scripts/dev.mjs",
"dev:turbo": "node ./node_modules/turbo/bin/turbo run dev --filter=@flyx/app",
"dev:all": "node ./node_modules/turbo/bin/turbo run dev",
"dev:app": "node ./scripts/dev.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e:extractor": "vitest run --project=extractors",
"test:e2e:manga-api": "vitest run --project=app",
"test:e2e:reader": "playwright test --config=packages/app/playwright.config.ts",
"test:e2e:manga": "npm run test:e2e:extractor && npm run test:e2e:manga-api && npm run test:e2e:reader",
"lint": "eslint packages/*/src --ext .ts,.tsx",
"lint:fix": "eslint packages/*/src --ext .ts,.tsx --fix",
"type-check": "node ./node_modules/turbo/bin/turbo run type-check",
"format": "prettier --write \"packages/*/src/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"packages/*/src/**/*.{ts,tsx,css}\"",
"clean": "node ./node_modules/turbo/bin/turbo run clean",
"generate:provider": "tsx tools/scripts/generate-providers.ts",
"validate:priorities": "tsx tools/scripts/validate-priorities.ts",
"deploy:local": "cd packages/app && next build && next start",
"deploy:cloudflare": "cd packages/app && next build && npx @opennextjs/cloudflare build && npx wrangler deploy",
"deploy:landing": "npx wrangler pages deploy landing --project-name flyx-landing",
"deploy:all": "npm run deploy:cloudflare",
"cli": "node packages/cli/cli.js",
"cli:link": "npm link --workspace @flyx/cli",
"build:standalone": "node scripts/build-standalone.mjs",
"desktop:build": "node scripts/build-desktop.mjs",
"desktop:dev": "node scripts/build-desktop.mjs && npm run start --workspace=@flyx/desktop",
"desktop:package": "npm run desktop:build && npm run dist --workspace=@flyx/desktop",
"desktop:publish": "npm run desktop:build && npm run dist:publish --workspace=@flyx/desktop",
"desktop:icons": "node scripts/gen-desktop-icon.mjs",
"ffmpeg:fetch": "node scripts/fetch-ffmpeg.mjs"
},
"devDependencies": {
"@types/node": "^20.14.0",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-import": "^2.31.0",
"prettier": "^3.5.0",
"turbo": "^2.5.0",
"typescript": "^5.9.0",
"vitest": "^3.1.0"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "npm@10.9.0",
"allowScripts": {
"esbuild": true,
"sharp": true,
"workerd": true,
"fsevents": true,
"electron": true
},
"dependencies": {
"jose": "^6.2.4",
"lucide-react": "^1.25.0"
}
}