-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1020 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1020 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
31
{
"name": "pulse",
"private": true,
"version": "0.13.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"qr": "evenhub qr",
"lint:app-json": "node scripts/lint-app-json.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:backends": "node scripts/test-backends.mjs",
"pack": "node scripts/lint-app-json.mjs && evenhub pack app.json dist -o pulse.ehpk",
"deploy": "npm run build && npm run pack && echo '\\npulse.ehpk ready: '$(pwd)'/pulse.ehpk\\nRun npm run deploy:upload to push to the portal'",
"deploy:upload": "node scripts/deploy-portal.mjs",
"deploy:full": "npm run deploy && npm run deploy:upload"
},
"dependencies": {
"@evenrealities/even_hub_sdk": "^0.0.10"
},
"devDependencies": {
"@evenrealities/evenhub-cli": "^0.1.11",
"@evenrealities/evenhub-simulator": "^0.7.2",
"jsdom": "^29.0.2",
"typescript": "^5.8.3",
"vite": "^7.1.7",
"vitest": "^4.1.5"
}
}