-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.72 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.72 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
{
"name": "guardian-wallet",
"private": true,
"version": "0.1.0",
"description": "Agents deserve wallets without private keys — 2-of-3 threshold ECDSA signing for AI agents",
"author": "Agentokratia",
"license": "AGPL-3.0-only",
"homepage": "https://github.com/agentokratia/guardian-wallet",
"repository": {
"type": "git",
"url": "https://github.com/agentokratia/guardian-wallet.git"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"test": "turbo test",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"clean": "turbo clean && rm -rf node_modules",
"example:viem": "tsx --env-file=examples/.env examples/viem-client/send.ts",
"example:langchain": "tsx --env-file=examples/.env examples/langchain/agent.ts",
"example:vercel-ai": "tsx --env-file=examples/.env examples/vercel-ai-sdk/agent.ts",
"example:mcp": "tsx --env-file=examples/.env examples/mcp/test-tools.ts",
"example:mcp-agent": "tsx --env-file=examples/.env examples/mcp/llm-agent.ts",
"example:claude-agent": "tsx --env-file=examples/.env examples/claude-agent-sdk/agent.ts",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css}": ["biome check --fix --no-errors-on-unmatched"]
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.75.0",
"@biomejs/biome": "^1.9.0",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@google/generative-ai": "^0.24.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"openai": "^6.22.0",
"tsx": "^4.19.0",
"turbo": "^2.3.0",
"typescript": "^5.6.0",
"vitest": "^2.0.0"
}
}