-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 1.93 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 1.93 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
{
"name": "memeputer",
"version": "2.0.0",
"license": "MIT",
"type": "module",
"description": "Official TypeScript SDK + CLI for the Memeputer agent chat platform.",
"homepage": "https://docs.memeputer.com",
"repository": {
"type": "git",
"url": "git+https://github.com/rawgroundbeef/memeputer.git"
},
"bugs": {
"url": "https://github.com/rawgroundbeef/memeputer/issues"
},
"keywords": [
"memeputer",
"solana",
"x402",
"meteora",
"sdk",
"agent",
"chat"
],
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"publishConfig": {
"provenance": true,
"access": "public"
},
"bin": {
"memeputer": "./dist/cli.mjs"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup && node scripts/post-build.mjs",
"typecheck": "tsc --noEmit",
"test": "pnpm build && vitest run --passWithNoTests",
"pack:dry": "npm pack --dry-run --json ."
},
"peerDependencies": {
"@coral-xyz/anchor": "^0.32.1",
"@openfacilitator/sdk": "1.0.0",
"@solana/web3.js": "^1.98.0",
"socket.io-client": "^4.8.3"
},
"peerDependenciesMeta": {
"socket.io-client": {
"optional": true
}
},
"dependencies": {
"bs58": "^6.0.0",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@coral-xyz/anchor": "^0.32.1",
"@openfacilitator/sdk": "1.0.0",
"@solana/web3.js": "^1.98.0",
"@types/node": "^22.0.0",
"socket.io-client": "^4.8.3",
"tsup": "^8.0.0",
"typescript": "^5.6.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=22",
"pnpm": ">=10.16"
},
"packageManager": "pnpm@10.16.0"
}