-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.22 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
{
"name": "@everipedia/web3-signer",
"version": "0.0.13",
"description": "web3 signer",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": "https://github.com/EveripediaNetwork/web3-sign",
"license": "MIT",
"keywords": [
"viem",
"web3",
"token"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "jest",
"format": "rome format . --write",
"lint": "rome check .",
"lint:fix": "yarn lint --apply",
"watch:build": "tsc -p tsconfig.json -w",
"release": "yarn build && changeset publish"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"base-64": "^1.0.0",
"ms": "^2.1.3",
"parse-headers": "^2.0.5",
"viem": "^0.2.12"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/base-64": "^1.0.0",
"@types/jest": "^29.5.0",
"@types/ms": "^0.7.31",
"@types/node": "^18.15.11",
"changeset": "^0.2.6",
"jest": "^29.5.0",
"rome": "12.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"files": [
"dist",
"!**/*.test.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
}
}