-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "@plumaa/signer",
"version": "1.3.4",
"description": "RSA signature and verification utilities for signing Ethereum operations with an RSA keypair",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prepare": "npm run compile",
"compile": "tsc",
"compile:watch": "tsc -w",
"clean": "rimraf dist",
"lint": "eslint . --ignore-path .gitignore --max-warnings 0",
"lint:fix": "eslint . --ignore-path .gitignore --max-warnings 0 --fix",
"test": "ava",
"test:watch": "ava -w",
"test:coverage": "c8 npm run test --"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PlumaaID/signer.git"
},
"author": "Ernesto García <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PlumaaID/signer/issues"
},
"homepage": "https://www.npmjs.com/package/@plumaa/signer",
"devDependencies": {
"@fast-check/ava": "^1.2.1",
"@types/node": "^20.12.7",
"@types/node-forge": "^1.3.11",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"c8": "^9.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"node-forge": "^1.3.1",
"permissionless": "^0.2.3",
"viem": "^2.21.15"
}
}