forked from sendaifun/solana-agent-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.28 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.28 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
{
"name": "solana-agent-kit",
"description": "connect any ai agents to solana protocols",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "turbo run clean",
"build": "turbo run build",
"build:core": "turbo run build --filter=solana-agent-kit",
"build:plugin-token": "turbo run build --filter=@solana-agent-kit/plugin-token",
"build:plugin-nft": "turbo run build --filter=@solana-agent-kit/plugin-nft",
"build:plugin-defi": "turbo run build --filter=@solana-agent-kit/plugin-defi",
"build:plugin-misc": "turbo run build --filter=@solana-agent-kit/plugin-misc",
"build:plugin-blinks": "turbo run build --filter=@solana-agent-kit/plugin-blinks",
"build:adapter-mcp": "turbo run build --filter=@solana-agent-kit/adapter-mcp",
"test": "npx tsx test/index.ts",
"docs": "typedoc",
"generate": "tsx src/utils/keypair.ts",
"lint": "biome check",
"lint:fix": "biome check --write --unsafe",
"format": "biome format --write",
"prepare": "husky",
"version-packages": "changeset version",
"publish-packages": "turbo run build && changeset publish"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=8.0.0"
},
"keywords": [
"solana",
"agent",
"ai",
"solana agent kit",
"sendai"
],
"author": "sendaifun",
"license": "Apache-2.0",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.12",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/crypto-js": "^4.2.2",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"ai": "^4.1.5",
"axios": "^1.9.0",
"crypto-js": "^4.2.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"rollup": "^4.36.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.2.1",
"tsup": "^8.4.0",
"tsx": "^4.19.2",
"turbo": "^2.3.4",
"typedoc": "^0.28.2",
"typedoc-plugin-markdown": "^4.6.2",
"typescript": "^5.7.2"
},
"packageManager": "pnpm@9.15.3",
"version": "2.0.7"
}