-
-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
140 lines (140 loc) · 7.04 KB
/
Copy pathpackage.json
File metadata and controls
140 lines (140 loc) · 7.04 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "masterselects",
"private": true,
"version": "3.1.7",
"license": "AGPL-3.0-only",
"type": "module",
"engines": {
"node": "24.16.0"
},
"scripts": {
"dev": "vite",
"dev:cf": "wrangler pages dev . --port 8788 --persist-to .wrangler/state",
"dev:api": "npm run cf:migrate:local && npm run dev:cf",
"dev:full": "node scripts/dev-full.mjs",
"dev:lan": "node scripts/dev-full.mjs --lan",
"cert:lan": "node scripts/make-lan-cert.mjs",
"mcp": "node scripts/masterselects-mcp.mjs",
"mcp:smoke": "node scripts/masterselects-mcp-smoke.mjs",
"social:status": "node tools/social-automation/cli.mjs status",
"social:brief:remote": "node tools/social-automation/cli.mjs remote-brief",
"social:new": "node tools/social-automation/cli.mjs new",
"social:validate": "node tools/social-automation/cli.mjs validate",
"social:preview": "node tools/social-automation/cli.mjs preview",
"social:dispatch": "node tools/social-automation/cli.mjs dispatch",
"build": "tsc -b && vite build && npm run docs:build",
"build:deploy": "vite build && npm run docs:build",
"docs:build": "npm --prefix docs-site install --no-audit --no-fund && npm --prefix docs-site run build",
"docs:build:head": "npm --prefix docs-site install --no-audit --no-fund && npm --prefix docs-site run build:head",
"cf:migrate:local": "wrangler d1 migrations apply DB --local",
"cf:migrate:remote": "wrangler d1 migrations apply DB --remote",
"cf:types": "wrangler types",
"credits:create-claim": "node scripts/create-credit-claim.mjs",
"admin:hash-password": "node scripts/hash-admin-password.mjs",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run tests/unit",
"test:kernel-boundary": "vitest run tests/unit/kernelOperationBoundaryWp1Spike.test.ts tests/unit/kernelOperationBoundaryWp1Parity.test.ts tests/unit/kernelOperationCancellationWp1.test.ts tests/unit/exclusiveHistorySnapshotLease.test.ts",
"test:normal-path-boundary": "vitest run tests/unit/normalPathCapabilities.test.ts tests/unit/normalPathFetchTransport.test.ts tests/unit/normalPathAvailability.test.ts tests/unit/hostedAgentFastV2StartContract.test.ts tests/unit/hostedAgentFastV2BrowserRequest.test.ts tests/unit/hostedAgentFastV2K2Adapter.test.ts tests/unit/hostedAgentFastV2ReloadResume.test.ts tests/unit/hostedAgentFastV2RecordedParity.test.ts tests/unit/kernelOperationCancellationWp1.test.ts tests/unit/kernelClientIsolation.test.ts",
"test:e2e:ui": "playwright test --ui --project=chrome-headed-dev",
"test:e2e:headed": "playwright test --headed --project=chrome-headed-dev",
"test:e2e:smoke": "playwright test --headed --project=chrome-headed-dev --grep \"@smoke|@module:foundation\"",
"test:e2e:module": "playwright test --headed --project=chrome-headed-dev",
"test:e2e:canary": "playwright test --headed --project=chrome-headed-dev",
"test:e2e:built:run": "playwright test --config=playwright.built.config.ts --project=chrome-headed-built-smoke",
"test:e2e:built": "npm run build:deploy && npm run test:e2e:built:run",
"test:e2e:release": "npm run test:e2e:types && npm run build && npm run test:e2e:built:run && playwright test --headed --project=chrome-headed-dev",
"test:e2e:report": "playwright show-report playwright-report",
"test:e2e:types": "tsc -p tests/playwright/tsconfig.json",
"test:e2e:beta": "playwright test --config playwright.beta.config.ts",
"test:security": "vitest run tests/security/ tests/unit/aiToolPolicy.test.ts tests/unit/logRedaction.test.ts tests/unit/redact.test.ts --reporter=verbose",
"fixtures:stress-test-media": "node scripts/prepare-stress-test-media.mjs",
"docs:screenshots": "node scripts/capture-feature-doc-screenshots.mjs",
"stress-test:bridge-fast": "node scripts/run-stress-test-bridge-fast.mjs",
"timeline:canvas:verify": "node scripts/run-timeline-canvas-verification.mjs",
"agent-timeline:benchmark": "node scripts/agent-timeline/run-benchmark.mjs",
"worker-first:platform:collect": "node scripts/run-worker-first-platform-evidence.mjs collect",
"worker-first:platform:verify": "node scripts/run-worker-first-platform-evidence.mjs verify",
"worker-first:platform:status": "node scripts/run-worker-first-platform-evidence.mjs status",
"worker-first:platform:doctor": "node scripts/run-worker-first-platform-evidence.mjs doctor",
"worker-first:platform:macos-runbook": "node scripts/run-worker-first-platform-evidence.mjs macos-runbook",
"swarm:status": "node scripts/swarm-status.mjs once",
"swarm:status:watch": "node scripts/swarm-status.mjs watch",
"codex:usage": "node scripts/codex-session-monitor.mjs once",
"codex:usage:watch": "node scripts/codex-session-monitor.mjs watch",
"codex:usage:stop": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/stop-codex-usage-watch.ps1"
},
"dependencies": {
"@ffmpeg/core": "^0.12.6",
"@ffmpeg/ffmpeg": "^0.12.6",
"@ffmpeg/util": "^0.12.2",
"@huggingface/transformers": "^3.8.1",
"@lottiefiles/dotlottie-web": "^0.71.0",
"@mediabunny/mp3-encoder": "^1.39.2",
"@mediapipe/tasks-vision": "^0.10.35",
"@pdf-lib/fontkit": "^1.1.1",
"@playcanvas/splat-transform": "^1.10.1",
"@rive-app/canvas": "^2.37.7",
"@tabler/icons-react": "^3.44.0",
"@techstark/opencv-js": "^5.0.0-release.1",
"@webgpu/types": "^0.1.66",
"acorn": "^8.18.0",
"fflate": "^0.8.3",
"gifenc": "^1.0.3",
"mediabunny": "^1.39.2",
"ml-matrix": "^6.15.0",
"modern-screenshot": "^4.7.0",
"mp4box": "^2.3.0",
"onnxruntime-web": "^1.24.1",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^6.2.108",
"playcanvas": "^2.17.2",
"prosemirror-commands": "^1.7.2",
"prosemirror-keymap": "^1.2.3",
"prosemirror-model": "^1.25.12",
"prosemirror-schema-list": "^1.5.1",
"prosemirror-state": "^1.4.4",
"prosemirror-view": "^1.42.5",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"saxes": "^6.0.0",
"soundtouch-ts": "^1.1.1",
"turbores": "1.2.2",
"zustand": "^5.0.9"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"@playwright/test": "^1.63.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.1.11",
"@vitest/ui": "^4.1.11",
"baseline-browser-mapping": "^2.11.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"fast-check": "^4.8.0",
"globals": "^16.5.0",
"jsdom": "^28.0.0",
"soundfont2": "^0.5.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.3.2",
"vitest": "^4.1.11",
"wrangler": "^4.76.0"
},
"overrides": {
"sharp": "^0.35.4",
"undici": "7.29.0"
}
}