-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.75 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.75 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
{
"name": "oikos",
"version": "0.2.0",
"private": true,
"description": "Sovereign AI agent with process-isolated self-custodial wallet on Tether's runtime stack",
"license": "Apache-2.0",
"type": "module",
"main": "index.js",
"pear": {
"pre": "pear-electron/pre",
"name": "oikos-app",
"gui": {
"main": "index.html",
"icon": "assets/logo.png",
"width": 1280,
"height": 800,
"minWidth": 800,
"minHeight": 600,
"titleBarStyle": "hiddenInset"
},
"links": {
"internal": "http://127.0.0.1:13421",
"internal2": "http://127.0.0.1:13422",
"internal3": "http://127.0.0.1:13423",
"internal4": "http://127.0.0.1:13424"
}
},
"workspaces": [
"wallet-isolate",
"oikos-wallet"
],
"bin": {
"oikos": "oikos-wallet/dist/src/cli.js"
},
"scripts": {
"postinstall": "npm run build",
"update": "./scripts/update.sh",
"build": "npm run build --workspaces",
"test": "npm run test --workspaces",
"demo": "./scripts/start-demo.sh",
"live": "./scripts/start-live.sh",
"generate-seed": "node scripts/generate-seed.js",
"pear:dev": "pear run -d .",
"start": "node oikos-wallet/dist/src/main.js",
"oikos": "node oikos-wallet/dist/src/cli.js"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"b4a": "1.8.0",
"bare-env": "^3.0.0",
"bare-fs": "^3.0.0",
"bare-http1": "^4.2.3",
"bare-os": "^3.7.1",
"bare-path": "^3.0.0",
"compact-encoding": "2.19.0",
"hypercore-crypto": "^3.4.2",
"hyperswarm": "4.16.0",
"pear-bridge": "^1.2.5",
"pear-electron": "^1.7.28",
"protomux": "3.10.0",
"sodium-universal": "5.0.1"
},
"overrides": {
"@tetherto/wdk-wallet-evm": "1.0.0-beta.8"
}
}