@dimcool/dimclaw 0.1.10

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.
@@ -0,0 +1,34 @@
1
+ {
2
+ "id": "dimclaw",
3
+ "name": "DIM Gaming Platform",
4
+ "description": "Play games, chat, send USDC and earn on DIM.",
5
+ "configSchema": {
6
+ "type": "object",
7
+ "properties": {
8
+ "walletPrivateKey": {
9
+ "type": "string"
10
+ },
11
+ "walletStorePath": {
12
+ "type": "string"
13
+ },
14
+ "apiUrl": {
15
+ "type": "string"
16
+ }
17
+ },
18
+ "required": []
19
+ },
20
+ "uiHints": {
21
+ "walletPrivateKey": {
22
+ "label": "Solana Wallet Private Key",
23
+ "sensitive": true
24
+ },
25
+ "walletStorePath": {
26
+ "label": "Wallet store path",
27
+ "placeholder": "~/.dim/openclaw-wallet.json"
28
+ },
29
+ "apiUrl": {
30
+ "label": "API URL",
31
+ "placeholder": "https://api.dim.cool"
32
+ }
33
+ }
34
+ }
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@dimcool/dimclaw",
3
+ "version": "0.1.10",
4
+ "description": "OpenClaw plugin for DIM — play games, chat, send USDC, and earn on DIM using the SDK directly (no MCP subprocess).",
5
+ "type": "module",
6
+ "openclaw": {
7
+ "extensions": [
8
+ "./dist/index.js"
9
+ ],
10
+ "id": "dimclaw"
11
+ },
12
+ "files": [
13
+ "dist",
14
+ "index.ts",
15
+ "dim-client.ts",
16
+ "openclaw.plugin.json",
17
+ "README.md"
18
+ ],
19
+ "scripts": {
20
+ "build": "tsup",
21
+ "dev": "tsup --watch"
22
+ },
23
+ "dependencies": {
24
+ "@dimcool/sdk": "0.1.10",
25
+ "@dimcool/wallet": "0.1.10",
26
+ "@solana/web3.js": "^1.95.4",
27
+ "bs58": "^6.0.0",
28
+ "tweetnacl": "^1.0.3"
29
+ },
30
+ "devDependencies": {
31
+ "@types/node": "^20.3.1",
32
+ "typescript": "^5.0.0",
33
+ "tsup": "^8.5.1"
34
+ },
35
+ "peerDependencies": {},
36
+ "publishConfig": {
37
+ "access": "public"
38
+ },
39
+ "keywords": [
40
+ "openclaw",
41
+ "dim",
42
+ "plugin",
43
+ "gaming",
44
+ "solana",
45
+ "usdc",
46
+ "ai-agent"
47
+ ]
48
+ }