-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.34 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.34 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "yetanotheraa-validator",
"version": "1.0.0",
"description": "Production-ready BLS signature validation infrastructure for ERC-4337 account abstraction",
"main": "dist/main.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/fanhousanbu/YetAnotherAA-Validator.git"
},
"homepage": "https://github.com/fanhousanbu/YetAnotherAA-Validator#readme",
"bugs": {
"url": "https://github.com/fanhousanbu/YetAnotherAA-Validator/issues"
},
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:check": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"test": "jest --passWithNoTests",
"test:ci": "jest --ci --coverage --maxWorkers=2 --passWithNoTests",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@nestjs/cli": "^11.0.10",
"@nestjs/common": "^11.1.8",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.8",
"@nestjs/platform-express": "^11.1.6",
"@nestjs/swagger": "^11.2.1",
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.0",
"@types/node": "^24.9.1",
"@types/uuid": "^11.0.0",
"@types/ws": "^8.18.1",
"axios": "^1.13.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"ethers": "^6.15.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"uuid": "^13.0.0",
"ws": "^8.18.3"
},
"keywords": [
"bls12-381",
"erc4337",
"account-abstraction",
"ethereum",
"signatures",
"aggregation",
"nestjs",
"typescript",
"gossip-network",
"webauthn",
"passkey"
],
"author": "YetAnotherAA Contributors",
"license": "MIT",
"devDependencies": {
"@types/express": "^5.0.4",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "^9.38.0",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"prettier-plugin-solidity": "^2.1.0",
"ts-jest": "^29.4.5"
}
}