-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.04 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.04 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
{
"name": "abjects",
"version": "0.3.6",
"description": "LLM-Mediated Object System",
"author": {
"name": "mempko",
"email": "max@mempko.com"
},
"type": "module",
"main": "dist-electron/main.js",
"scripts": {
"conjure": "pnpm install",
"awaken": "tsx --watch server/index.ts",
"scry": "vite --config vite.client.config.ts",
"whisper": "tsx server/signaling-server.ts",
"awaken2": "ABJECTS_DATA_DIR=.abjects2 WS_PORT=7721 tsx --watch server/index.ts",
"scry2": "VITE_WS_PORT=7721 VITE_CLIENT_PORT=5175 vite --config vite.client.config.ts",
"awaken3": "ABJECTS_DATA_DIR=.abjects3 WS_PORT=7722 tsx --watch server/index.ts",
"scry3": "VITE_WS_PORT=7722 VITE_CLIENT_PORT=5176 vite --config vite.client.config.ts",
"asc": "asc",
"hack": "tsx hack/security-audit.ts",
"bind": "node build-server.mjs",
"etch": "vite build --config vite.client.config.ts",
"incarnate": "node build-electron.mjs && pnpm bind && pnpm etch",
"incarnate:linux": "pnpm incarnate && node download-playwright-browser.mjs linux-x64 && electron-builder --linux",
"incarnate:win": "pnpm incarnate && node download-playwright-browser.mjs win-x64 && electron-builder --win",
"incarnate:mac": "pnpm incarnate && node download-playwright-browser.mjs mac-x64 mac-arm64 && electron-builder --mac",
"incarnate:all": "pnpm incarnate:linux && pnpm incarnate:win && pnpm incarnate:mac",
"release": "node release.mjs"
},
"dependencies": {
"ajv": "^8.12.0",
"linkedom": "^0.18.0",
"minisearch": "^7.2.0",
"node-datachannel": "^0.32.1",
"playwright": "^1.40.0",
"uuid": "^9.0.0",
"ws": "^8.18.0",
"yaml": "^2.8.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"node-datachannel",
"electron",
"esbuild"
]
},
"devDependencies": {
"@types/uuid": "^9.0.0",
"@types/ws": "^8.5.0",
"assemblyscript": "^0.27.0",
"electron": "^35.0.0",
"electron-builder": "^26.0.0",
"esbuild": "^0.25.0",
"tsx": "^4.19.0",
"typescript": "^5.3.0",
"vite": "^5.0.0"
}
}