-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.97 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
{
"name": "humanapi",
"version": "1.2.0",
"description": "Open-source REST and MCP reference implementation for human-executed AI agent tasks",
"private": true,
"license": "MIT",
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "https://github.com/bit-cook/HumanAPI.git"
},
"bugs": {
"url": "https://github.com/bit-cook/HumanAPI/issues"
},
"homepage": "https://github.com/bit-cook/HumanAPI#readme",
"workspaces": [
"mcp-server"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"pretypecheck": "prisma generate",
"typecheck": "tsc --noEmit",
"lint": "eslint . --max-warnings=0 --ignore-pattern 'mcp-server/dist/**'",
"test": "vitest run --exclude 'mcp-server/**' && npm run mcp:test",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"check": "npm run typecheck && npm run lint && npm test && npm run build && npm run mcp:build && npm audit --audit-level=high",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"mcp:dev": "npm run dev --workspace @humanapi/mcp-server",
"mcp:build": "npm run build --workspace @humanapi/mcp-server",
"mcp:lint": "npm run lint --workspace @humanapi/mcp-server",
"mcp:test": "npm run test --workspace @humanapi/mcp-server"
},
"dependencies": {
"@prisma/client": "^6.12.0",
"clsx": "^2.1.1",
"next": "^16.3.3",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"tailwind-merge": "^3.6.0",
"zod": "^3.25.76",
"zustand": "^5.0.15"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@types/node": "^22.20.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@vitest/coverage-v8": "^4.1.11",
"eslint": "^9.39.2",
"eslint-config-next": "^16.3.3",
"postcss": "^8.5.26",
"prisma": "^6.12.0",
"tsx": "^4.23.13",
"typescript": "^5.9.3",
"vitest": "^4.1.11"
}
}