-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.34 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
{
"name": "@0xsequence/ethauth",
"version": "0.8.1",
"description": "ETHAuth -- self-signed authorization proofs",
"repository": "https://github.com/0xsequence/ethauth.js",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"author": "github.com/0xsequence",
"license": "MIT",
"scripts": {
"build": "rimraf ./dist && rollup -c --bundleConfigAsCjs",
"prepublishOnly": "pnpm test",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"test:watch": "jest --watchAll",
"test": "jest --ci --runInBand"
},
"files": [
"dist"
],
"dependencies": {
"js-base64": "^3.7.2"
},
"peerDependencies": {
"ethers": ">=6"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"ethers": "^6.13.0",
"jest": "^29.3.1",
"prettier": "^3.0.2",
"rimraf": "^3.0.2",
"rollup": "^3.3.0",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "~4.8.4"
},
"jest": {
"setupFiles": [],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"roots": [
"src",
"tests"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleNameMapper": {}
}
}