-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 982 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 982 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
29
30
{
"name": "memento",
"private": true,
"version": "0.0.1",
"description": "Memento — ledger-based memory agent for Even Realities G2",
"workspaces": [
"shared",
"relay",
"plugin",
"mirror"
],
"scripts": {
"dev:relay": "npm run dev -w @memento/relay",
"dev:mirror": "npm run dev -w @memento/mirror",
"dev:plugin": "npm run dev -w @memento/plugin",
"dev": "concurrently -n relay,mirror,plugin -c blue,green,magenta \"npm run dev:relay\" \"npm run dev:mirror\" \"npm run dev:plugin\"",
"qr": "node scripts/qr.mjs",
"qr:mirror": "node scripts/qr.mjs --port=5174",
"build:plugin": "npm run build -w @memento/plugin",
"pack": "npm run build:plugin && evenhub pack plugin/app.json plugin/dist -o memento.ehpk"
},
"devDependencies": {
"@evenrealities/evenhub-cli": "^0.1.13",
"concurrently": "^9.0.0",
"qrcode": "^1.5.4",
"qrcode-terminal": "^0.12.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}