-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.06 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.06 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
{
"name": "blocklock-agent",
"version": "1.0.0",
"description": "Agent for uploading signature for on-chain timelock encryption requests to EVM chains",
"type": "module",
"main": "index.cjs",
"scripts": {
"start": "npm run build && node ./index.cjs",
"test": "jest ./test/*.test.ts ./test/crypto/*.test.ts",
"build": "npm run build:generate && npm run build:js",
"build:js": "esbuild src/index.ts --bundle --platform=node --target=node22 --outfile=index.cjs",
"build:generate": "cd blocklock-solidity && forge build && cd .. && mkdir -p src/generated && npx typechain --target ethers-v6 --out-dir src/generated './blocklock-solidity/out/*.sol/*.json'",
"clean": "rm -rf generated",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/randa-mu/blocklock-agent.git"
},
"keywords": [
"encryption",
"ibe",
"solidity"
],
"author": "azixus",
"license": "MIT",
"bugs": {
"url": "https://github.com/randa-mu/blocklock-agent/issues"
},
"homepage": "https://github.com/randa-mu/blocklock-agent#readme",
"dependencies": {
"@noble/curves": "^1.8.1",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.57.0",
"@opentelemetry/exporter-prometheus": "^0.200.0",
"@opentelemetry/sdk-node": "^0.200.0",
"@typechain/ethers-v6": "^0.5.1",
"asn1js": "^3.0.5",
"commander": "^12.1.0",
"ethers": "^6.13.4",
"express": "^5.1.0",
"mcl-wasm": "^1.7.0",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.6.3",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"esbuild": "^0.24.0",
"eslint": "^9.13.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript-eslint": "^8.12.2"
}
}