forked from identity-com/prove-ethereum-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.55 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@civic/prove-ethereum-wallet",
"version": "1.1.2",
"description": "Library for providing a standard proof creation and verification for ethereum wallets",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=20"
},
"author": "Kevin Colgan",
"license": "MIT",
"scripts": {
"build": "tsdx build",
"test": "tsdx test",
"lint": "eslint",
"prepare": "tsdx build",
"script": "ts-node -O '{\"module\":\"commonjs\"}' --transpile-only --files",
"size": "size-limit",
"analyze": "size-limit --why"
},
"module": "dist/prove-ethereum-wallet.esm.js",
"size-limit": [
{
"path": "dist/prove-ethereum-wallet.cjs.production.min.js",
"limit": "110 KB"
},
{
"path": "dist/prove-ethereum-wallet.esm.js",
"limit": "10 KB"
}
],
"dependencies": {
"buffer": "^6.0.3",
"ethers": "^6.13.5"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@size-limit/preset-small-lib": "^7.0.0",
"@size-limit/webpack": "^7.0.0",
"@size-limit/webpack-why": "^7.0.0",
"@types/yargs": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.5.0",
"size-limit": "^7.0.0",
"ts-node": "^10.4.0",
"tsdx": "^0.14.1",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"yargs": "^17.2.1"
}
}