-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.43 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.43 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
{
"name": "@web-dev-examples/ecdsa-tools",
"version": "0.0.1",
"description": "Example of using Ethers JS and MetaMask for ECDSA signature creation and verification",
"type": "module",
"main": "index.js",
"scripts": {
"ts-build": "tsc --project tsconfig.json",
"ts-watch": "tsc --project tsconfig.json --watch",
"ts-lint": "npx eslint ts/assets --ext .ts,.tsx",
"serve": "http-server -a 127.0.0.1 -p 8080 dist",
"ci-build": "npm run ts-build && node scripts/post-build.mjs"
},
"prettier": {
"overrides": [
{
"files": ["*js", "*.ts"],
"options": {
"semi": true,
"trailingComma": "es5",
"printWidth": 119,
"singleQuote": true,
"indent_style": "tab"
}
}
]
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/web-dev-examples/ecdsa-tools.git"
},
"keywords": [
"metamask",
"dapp"
],
"author": "S0AndS0",
"license": "https://github.com/web-dev-examples/ecdsa-tools",
"bugs": {
"url": "https://github.com/web-dev-examples/ecdsa-tools/issues"
},
"homepage": "https://github.com/web-dev-examples/ecdsa-tools#readme",
"devDependencies": {
"@metamask/sdk": "^0.30.3",
"@types/react": "^18.3.12",
"@types/readable-stream": "^4.0.18",
"@types/ws": "^8.5.13",
"http-server": "^14.1.1",
"typescript": "^4.1.2"
},
"dependencies": {
"ethers": "^6.13.4"
}
}