-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.39 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
{
"name": "novaper",
"version": "0.7.3",
"private": true,
"description": "Novaper is an AI Windows desktop operator with live observation, replayable runs, and dual authentication.",
"type": "module",
"main": "apps/operator-web/dist-electron/main/index.js",
"scripts": {
"start": "tsx apps/runner/src/index.ts",
"dev": "tsx watch apps/runner/src/index.ts",
"typecheck": "tsc --noEmit",
"build:electron": "node scripts/build-electron.mjs",
"electron:dev": "node scripts/electron-dev.mjs",
"electron:build": "cross-env ELECTRON=1 npm run --prefix apps/operator-web build && npm run build:electron && electron-builder",
"electron:build:win": "cross-env ELECTRON=1 npm run --prefix apps/operator-web build && npm run build:electron && electron-builder --win"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.28.0",
"archiver": "^7.0.1",
"electron-log": "^5.4.0",
"electron-updater": "^6.3.9",
"express": "^5.2.1",
"openai": "^6.27.0",
"playwright-core": "^1.58.2",
"tree-kill": "^1.2.2",
"undici": "^7.16.0",
"unzipper": "^0.12.3"
},
"devDependencies": {
"@types/archiver": "^7.0.0",
"@types/express": "^5.0.6",
"@types/node": "^25.3.5",
"@types/unzipper": "^0.10.11",
"cross-env": "^7.0.3",
"electron": "^33.2.0",
"electron-builder": "^24.13.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}