-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1008 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 1008 Bytes
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
{
"name": "chromeyumm",
"version": "1.0.20",
"description": "Minimal Windows CEF browser with D3D output, Spout I/O, and multi-display support",
"scripts": {
"build": "bun build.ts",
"build:dev": "bun build.ts --dev",
"build:ts": "bun build.ts --skip-native",
"build:screen-ddp": "bun build.ts --screen-ddp-only",
"start": "dist/chromeyumm.exe",
"screen-capture": "dist/screen-ddp.exe screen-capture-config.json --show-region",
"test": "bun scripts/smoke-test.ts",
"feature-check": "dist/chromeyumm.exe --feature-check",
"demo-r3f": "cd ./src/views/r3f && npm run dev",
"demo-p5": "cd ./src/views/p5 && npm run dev",
"release": "bun scripts/release.ts",
"release:publish": "bun scripts/release.ts --publish",
"upgrade:cef": "bun scripts/setup-vendors.ts --cef-only --latest && bun build.ts",
"check-updates": "bun scripts/setup-vendors.ts --check-latest"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.9.3"
}
}