-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.27 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.27 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
{
"name": "spiritstream",
"version": "1.2.1",
"description": "SpiritStream - Multi-Destination Streaming Application",
"private": true,
"type": "module",
"packageManager": "pnpm@9.15.0",
"scripts": {
"generate:platforms": "tsx scripts/generate-platforms.ts",
"build:server": "tsx scripts/build-server.ts",
"build:server:release": "tsx scripts/build-server.ts --release",
"dev": "pnpm run dev:desktop",
"dev:web": "pnpm --filter @spiritstream/web dev",
"dev:desktop": "pnpm --filter @spiritstream/desktop dev",
"build": "turbo run build",
"build:web": "pnpm --filter @spiritstream/web build",
"build:desktop": "pnpm --filter @spiritstream/desktop build",
"backend:dev": "cargo run --manifest-path server/Cargo.toml",
"backend:build": "cargo build --manifest-path server/Cargo.toml --release",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"lint:fix": "pnpm --filter @spiritstream/web lint:fix",
"format": "prettier --write \"apps/**/*.{ts,tsx,css,json}\" \"packages/**/*.{ts,tsx,css,json}\"",
"format:check": "prettier --check \"apps/**/*.{ts,tsx,css,json}\" \"packages/**/*.{ts,tsx,css,json}\"",
"check:server": "cargo check --manifest-path server/Cargo.toml",
"check:desktop": "cargo check --manifest-path apps/desktop/src-tauri/Cargo.toml",
"clean": "rm -rf .turbo apps/*/.turbo apps/*/dist apps/*/node_modules/.vite apps/*/node_modules/.cache",
"clean:all": "pnpm clean && rm -rf server/target apps/desktop/src-tauri/target",
"clean:build": "pnpm clean && pnpm build",
"clean:build:web": "pnpm clean && pnpm build:web"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ScopeCreep-zip/SpiritStream.git"
},
"keywords": [
"streaming",
"rtmp",
"ffmpeg",
"tauri",
"multi-stream",
"broadcast",
"obs-alternative",
"desktop-app"
],
"author": "SpiritStream Contributors",
"license": "GPL-3.0",
"engines": {
"node": ">=20.0.0 <21.0.0 || >=22.0.0 <23.0.0 || >=24.0.0 <25.0.0"
},
"bugs": {
"url": "https://github.com/ScopeCreep-zip/SpiritStream/issues"
},
"homepage": "https://github.com/ScopeCreep-zip/SpiritStream#readme",
"devDependencies": {
"prettier": "^3.4.0",
"tsx": "^4.21.0",
"turbo": "^2.5.4"
}
}