-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.14 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.14 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
{
"name": "multiverse",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "vitest run --pool threads",
"implementation": "tsx tests/implementation_test.ts",
"demo:optimistic": "npm run build && node examples/optimistic-modal.js",
"demo:merge": "npm run build && node examples/concurrent-merge.js",
"demo:agents": "npm run build && node examples/agent-orchestration.js",
"demo:all": "npm run build && node examples/optimistic-modal.js && node examples/concurrent-merge.js && node examples/agent-orchestration.js",
"demo:react:dev": "vite examples/react-demo --host 0.0.0.0 --port 4173",
"demo:react:build": "vite build examples/react-demo --outDir dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"react": "^19.2.4",
"react-dom": "^19.2.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"dependencies": {
"@ai-sdk/google": "^3.0.53",
"ai": "^6.0.141",
"dotenv": "^17.3.1",
"zod": "^4.3.6"
}
}