-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 872 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 872 Bytes
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
{
"name": "opensig-js",
"version": "0.1.6",
"description": "OpenSig javascript library for publishing digital signatures to EVM-based blockchains.",
"main": "src/index.js",
"type": "module",
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"author": "Bubble Protocol",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/opensig/opensig-js.git"
},
"keywords": [
"opensig",
"digital signatures",
"e-signatures",
"digital identity",
"blockchain"
],
"bugs": {
"url": "https://github.com/opensig/opensig-js/issues"
},
"homepage": "https://github.com/opensig/opensig-js#readme",
"devDependencies": {
"jest": "^29.7.0",
"rollup": "^3.20.7"
},
"dependencies": {
"ethers": "^6.14.1"
}
}