clawchain-wallet 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,76 @@
1
+ {
2
+ "name": "clawchain-wallet",
3
+ "version": "1.0.0",
4
+ "description": "Wallet plugin that empowers OpenClaw agents with full blockchain capabilities on ClawChain — a chain built for free agent-to-agent transactions",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "openclaw": {
9
+ "extensions": ["./index.ts"]
10
+ },
11
+ "bin": {
12
+ "clawchain-wallet": "./scripts/postinstall.js",
13
+ "clawchain-wallet-setup": "./scripts/postinstall.js"
14
+ },
15
+ "files": [
16
+ "dist/",
17
+ "python/",
18
+ "scripts/",
19
+ "index.ts",
20
+ "src/",
21
+ "openclaw.plugin.json",
22
+ "tsconfig.json",
23
+ "SKILL.md"
24
+ ],
25
+ "scripts": {
26
+ "build": "tsc || true",
27
+ "dev": "tsc --watch",
28
+ "postinstall": "node scripts/postinstall.js",
29
+ "setup": "node scripts/postinstall.js",
30
+ "prepublishOnly": "npm run build"
31
+ },
32
+ "dependencies": {
33
+ "@sinclair/typebox": "^0.34.0"
34
+ },
35
+ "devDependencies": {
36
+ "@types/node": "^20.0.0",
37
+ "typescript": "^5.0.0"
38
+ },
39
+ "peerDependencies": {
40
+ "openclaw": "*",
41
+ "@mariozechner/pi-agent-core": "*"
42
+ },
43
+ "peerDependenciesMeta": {
44
+ "openclaw": {
45
+ "optional": true
46
+ },
47
+ "@mariozechner/pi-agent-core": {
48
+ "optional": true
49
+ }
50
+ },
51
+ "keywords": [
52
+ "clawchain",
53
+ "wallet",
54
+ "blockchain",
55
+ "openclaw",
56
+ "agent",
57
+ "web3",
58
+ "ethereum",
59
+ "crypto",
60
+ "transfer",
61
+ "airdrop"
62
+ ],
63
+ "author": "ClawChain",
64
+ "license": "MIT",
65
+ "repository": {
66
+ "type": "git",
67
+ "url": "https://npm.clawchain.net"
68
+ },
69
+ "homepage": "https://npm.clawchain.net",
70
+ "bugs": {
71
+ "url": "https://npm.clawchain.net"
72
+ },
73
+ "engines": {
74
+ "node": ">=18.0.0"
75
+ }
76
+ }