-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 973 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 973 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
{
"name": "smartmouse-ts",
"version": "2.0.0",
"description": "SmartMouse AI Agent - Local Vision with Transformers.js",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "bun --hot index.ts --port=7901",
"start": "bun index.ts --port=7901",
"start:watchdog": "powershell -ExecutionPolicy Bypass -File .\\scripts\\watchdog.ps1 -StopOnExit",
"start:watchdog:detach": "powershell -ExecutionPolicy Bypass -File .\\scripts\\start-watchdog.ps1",
"enable:autostart": "powershell -ExecutionPolicy Bypass -File .\\scripts\\enable-autostart.ps1"
},
"dependencies": {
"@xenova/transformers": "^2.17.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"jimp": "^0.22.12",
"screenshot-desktop": "^1.15.0",
"sharp": "^0.34.5",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"@types/screenshot-desktop": "^1.15.0"
}
}