-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.47 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.47 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
{
"name": "@elizaos-plugins/plugin-dcap",
"version": "0.1.9",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@elizaos/plugin-sgx": "workspace:*",
"@elizaos/plugin-tee": "workspace:*",
"ethers": "^6.13.5"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^20.0.0",
"tsup": "8.3.5"
},
"scripts": {
"build": "tsup --format esm --dts",
"dev": "tsup --format esm --dts --watch",
"clean": "rm -rf dist",
"lint": "biome lint .",
"lint:fix": "biome check --apply .",
"format": "biome format .",
"format:fix": "biome format --write ."
},
"agentConfig": {
"pluginType": "elizaos:client:1.0.0",
"pluginParameters": {
"EVM_PRIVATE_KEY": {
"type": "string",
"minLength": 1,
"description": "The EVM_PRIVATE_KEY used to submit the DCAP attestation on evm networks, please make sure it has enough balance to pay for the transaction fee.",
"optional": false
},
"DCAP_MODE": {
"type": "string",
"minLength": 1,
"description": "The DCAP_MODE is used to specify the mode of generating DCAP attestation, it can be: PLUGIN-SGX, PLUGIN-TEE, or MOCK.",
"optional": false
}
}
}
}