agent-world
Version:
World-mediated agent management system with clean API surface
85 lines (84 loc) • 2.32 kB
JSON
{
"name": "agent-world",
"version": "0.8.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./core": {
"import": "./dist/core/index.js",
"types": "./dist/core/index.d.ts"
},
"./package.json": "./package.json"
},
"type": "module",
"workspaces": [
"core",
"next",
"web"
],
"bin": {
"agent-world": "dist/cli/index.js",
"agent-world-server": "dist/server/index.js"
},
"scripts": {
"prestart": "npm run build",
"start": "node dist/server/index.js",
"cli": "npx tsx cli/index.ts",
"cli:watch": "npx tsx --watch cli/index.ts",
"server": "npx tsx server/index.ts",
"dev": "npm-run-all --parallel server:watch web:dev",
"server:watch": "npx tsx --watch server/index.ts",
"web:dev": "npm-run-all --sequential web:wait web:start",
"web:wait": "wait-on http://127.0.0.1:3000/health",
"web:start": "npm run dev --workspace=web",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:db": "npx tsx tests/db/migration-tests.ts",
"integration": "vitest run --config vitest.integration.config.ts",
"check": "tsc --noEmit && npm run check --workspace=web",
"build": "npm run build --workspace=core && tsc --project tsconfig.build.json && npm run build --workspace=web",
"pkill": "pkill -f tsx",
"dev-next": "cd next && npm run dev"
},
"description": "World-mediated agent management system with clean API surface",
"keywords": [
"agents",
"ai",
"llm",
"world",
"typescript",
"api"
],
"author": "",
"license": "ISC",
"dependencies": {
"chalk": "^5.5.0",
"cors": "^2.8.5",
"enquirer": "^2.4.1",
"express": "^4.21.2",
"open": "^10.2.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.23",
"@types/node": "^24.9.1",
"@vitest/coverage-v8": "^2.1.9",
"@vitest/ui": "^2.1.9",
"commander": "^14.0.0",
"npm-run-all": "^4.1.5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.9",
"wait-on": "^9.0.1"
},
"engines": {
"node": ">=20.0.0"
}
}