-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.77 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
{
"name": "agentos",
"version": "0.1.0",
"private": true,
"description": "Sovereign Agents on Walrus — the identity, policy, and coordination layer for autonomous AI agents on Sui",
"license": "Apache-2.0",
"workspaces": [
"sdk/packages/client",
"sdk/packages/design-tokens",
"sdk/packages/memwal-bridge",
"sdk/packages/workspace",
"sdk/packages/indexer",
"sdk/packages/adapters/langgraph",
"sdk/packages/adapters/claude-sdk",
"sdk/packages/adapters/eliza",
"sdk/packages/memory",
"sdk/packages/artifacts",
"sdk/packages/messaging",
"sdk/packages/private-data",
"sdk/packages/workspace-core",
"sdk/packages/workspace-api",
"examples/cross-framework-demo"
],
"engines": {
"node": ">=20",
"npm": ">=10"
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"move:build": "cd move/agentos_core && sui move build",
"move:test": "cd move/agentos_core && sui move test",
"vercel-build": "npm run build -w @agentos/client -w @agentos/memwal-bridge -w @agentos/workspace && npm install --prefix examples/messaging-runtime-bridge && npm run build:deploy --prefix examples/messaging-runtime-bridge && npm install --prefix client --install-links --no-save --include=dev && npm run build --prefix client",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\""
},
"devDependencies": {
"@types/node": "^22.10.0",
"next": "16.2.6",
"prettier": "^3.4.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"typescript": "^5.7.0"
}
}