-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.72 KB
/
package.json
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
{
"name": "@elizaos-plugins/plugin-trikon",
"version": "0.1.9",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"@elizaos/source": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"devDependencies": {
"@types/node": "^20.0.0",
"tsup": "^8.3.5",
"eslint": "^9.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"globals": "^14.0.0",
"@biomejs/biome": "1.5.3"
},
"scripts": {
"build": "tsup --format esm --dts",
"dev": "tsup --format esm --dts --watch",
"lint": "biome check src/",
"lint:fix": "biome check --apply src/",
"format": "biome format src/",
"format:fix": "biome format --write src/",
"test": "vitest run"
},
"agentConfig": {
"pluginType": "elizaos:client:1.0.0",
"pluginParameters": {
"TRIKON_WALLET_ADDRESS": {
"type": "string",
"minLength": 1,
"description": "Your Trikon wallet address (must be a valid 64-character hex string starting with '0x')",
"optional": false
},
"TRIKON_INITIAL_BALANCE": {
"type": "string",
"minLength": 1,
"description": "(Optional) The initial balance for the wallet. Defaults to \"0\" if not provided.",
"optional": true
}
}
}
}