-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 970 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 970 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
26
27
28
{
"name": "resonant",
"version": "2.1.2",
"private": true,
"description": "Relational AI companion framework built on Claude Code Agent SDK",
"workspaces": ["packages/shared", "packages/backend", "packages/frontend"],
"scripts": {
"setup": "node scripts/setup.mjs",
"dev": "npm run dev --workspace=packages/backend",
"dev:frontend": "npm run dev --workspace=packages/frontend",
"dev:all": "concurrently \"npm run dev\" \"npm run dev:frontend\"",
"build": "npm run build --workspace=packages/shared && npm run build --workspace=packages/frontend && npm run build --workspace=packages/backend",
"start": "npm run start --workspace=packages/backend",
"check": "npm run check --workspaces --if-present",
"test": "vitest run"
},
"engines": {
"node": ">=20.0.0 <25.0.0"
},
"license": "Apache-2.0",
"devDependencies": {
"vitest": "^3.0.0"
},
"overrides": {
"undici": "^6.24.0",
"cookie": "^1.0.0"
}
}