-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.08 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.08 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "errand",
"version": "0.2.4",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/runta-dev/errand.git"
},
"type": "module",
"main": "out/main/index.js",
"description": "Errand — a desktop home for persistent cloud agents",
"author": "Runta",
"engines": {
"node": ">=22 <27"
},
"scripts": {
"dev": "npm run build:icons && node scripts/rebrand-electron.mjs && electron-vite dev",
"postinstall": "node scripts/ensure-electron.mjs",
"build": "npm run build:icons && electron-vite build",
"package": "npm run build && electron-builder --mac --publish never -c.mac.identity=- -c.mac.hardenedRuntime=false && node scripts/compress-dmg.mjs",
"package:release": "node scripts/package-release.mjs",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p electron/tsconfig.json",
"lint": "eslint .",
"test": "vitest run",
"test:e2e": "node scripts/e2e.mjs",
"test:ui": "vitest run --project renderer",
"smoke": "node scripts/smoke.mjs",
"build:icons": "node scripts/build-icons.mjs"
},
"dependencies": {
"@novnc/novnc": "^1.5.0",
"@vitejs/plugin-react": "^5.0.4",
"boring-avatars": "^2.0.4",
"clsx": "^2.1.1",
"lucide-react": "^0.468.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"streamdown": "^2.6.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@resvg/resvg-js": "2.6.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.16.5",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitest/coverage-v8": "^3.2.4",
"app-builder-lib": "26.15.3",
"electron": "^44.0.0",
"electron-builder": "26.15.3",
"electron-vite": "^4.0.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"js-yaml": "4.3.1",
"jsdom": "^26.1.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.48.1",
"vite": "^7.0.0",
"vitest": "^3.2.4"
},
"build": {
"appId": "com.runta.crew",
"productName": "Errand",
"asar": true,
"directories": {
"output": "release"
},
"files": [
"out/**/*",
"package.json"
],
"mac": {
"category": "public.app-category.productivity",
"icon": "build/icon.icns",
"target": [
{
"target": "dmg",
"arch": [
"arm64"
]
},
{
"target": "zip",
"arch": [
"arm64"
]
}
],
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"protocols": [
{
"name": "Errand agent links",
"schemes": [
"errand",
"runta-crew"
]
}
],
"extraResources": [
{
"from": "docs/licenses/boring-avatars.txt",
"to": "licenses/boring-avatars.txt"
}
]
}
}