-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.4 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.4 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "wordclaw",
"version": "1.54.2",
"description": "",
"main": "dist/index.js",
"bin": {
"wordclaw": "dist/cli/index.js"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"dev:all": "tsx scripts/dev-all.ts",
"db:migrate": "tsx src/db/migrate.ts",
"db:stamp": "tsx src/db/stamp-migrations.ts",
"build": "tsc",
"start": "node dist/index.js",
"mcp:start": "tsx src/mcp/index.ts",
"demo:seed-blog": "tsx scripts/seed-blog.ts",
"demo:seed-proposal-portal": "tsx scripts/seed-proposal-portal.ts",
"demo:proposal-portal": "tsx demos/demo-proposal-portal/server.ts",
"verify:api": "tsx scripts/verification/verify-api.ts",
"verify:audit": "tsx scripts/verification/verify-audit.ts",
"verify:dry-run": "tsx scripts/verification/verify-dry-run.ts",
"verify:graphql": "tsx scripts/verification/verify-graphql.ts",
"verify:mcp": "tsx scripts/verification/verify-mcp.ts",
"verify:mcp:advanced": "tsx scripts/verification/verify-mcp-advanced.ts",
"verify:mcp:streams": "tsx scripts/verification/verify-mcp-streams.ts",
"verify:rate-limit": "tsx scripts/verification/verify-rate-limit.ts",
"verify:versioning": "tsx scripts/verification/verify-versioning.ts",
"verify:blog": "node scripts/verification/test-blog.js",
"test": "vitest run --reporter verbose",
"test:coverage": "vitest run --reporter verbose --coverage --coverage.reporter=text-summary --coverage.reporter=json-summary",
"test:ui": "npm --prefix ui run test",
"test:ui:coverage": "npm --prefix ui run test:coverage",
"test:all": "npm test && npm run test:ui",
"docs:dev": "vitepress dev doc",
"docs:build": "vitepress build doc",
"docs:preview": "vitepress preview doc",
"test:integration": "vitest run tests/integration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dligthart/wordclaw.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "commonjs",
"bugs": {
"url": "https://github.com/dligthart/wordclaw/issues"
},
"homepage": "https://github.com/dligthart/wordclaw#readme",
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.2.0",
"@fastify/jwt": "^10.0.0",
"@fastify/multipart": "^9.4.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.5",
"@fastify/type-provider-typebox": "^6.1.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"@sinclair/typebox": "^0.34.48",
"bcryptjs": "^3.0.3",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.1",
"fastify": "^5.7.4",
"fastify-plugin": "^5.1.0",
"graphql": "^16.12.0",
"graphql-type-json": "^0.3.2",
"macaroon": "^3.0.4",
"macaroons.js": "^0.3.9",
"mercurius": "^16.7.0",
"openai": "^6.22.0",
"pg": "^8.18.0",
"pgvector": "^0.2.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@coinbase/agentkit": "^0.10.4",
"@coinbase/agentkit-langchain": "^0.3.0",
"@langchain/core": "^1.1.31",
"@langchain/langgraph": "^1.2.1",
"@langchain/openai": "^1.2.12",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^25.2.3",
"@types/pg": "^8.16.0",
"@vitest/coverage-v8": "^4.0.18",
"drizzle-kit": "^0.31.9",
"mermaid": "^11.12.3",
"swagger-ui-dist": "^5.31.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17",
"vitest": "^4.0.18"
}
}