forked from hvardhan878/ghostwork
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 991 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 991 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
32
{
"name": "ghostwork",
"version": "1.0.0",
"description": "A background agent that learns and automates your workflows",
"main": "dist/main/main.js",
"scripts": {
"build": "tsc --project tsconfig.json && cp src/renderer/*.html dist/renderer/",
"rebuild-native": "electron-rebuild -f -w better-sqlite3",
"start": "npm run build && electron .",
"dev": "npm run build && electron . --inspect",
"postinstall": "electron-rebuild -f -w better-sqlite3"
},
"keywords": [],
"author": "Harsh Vardhan",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@electron/rebuild": "^3.7.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.15.29",
"@types/node-cron": "^3.0.11",
"electron": "^36.3.1",
"electron-builder": "^25.1.8",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"better-sqlite3": "^11.10.0",
"dotenv": "^16.5.0",
"node-cron": "^3.0.3",
"playwright-core": "^1.60.0"
}
}