-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "@0xsequence/sessions",
"version": "2.2.3",
"description": "tools for migrating sequence wallets to new versions",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/sessions",
"source": "src/index.ts",
"main": "dist/0xsequence-sessions.cjs.js",
"module": "dist/0xsequence-sessions.esm.js",
"author": "Horizon Blockchain Games",
"license": "Apache-2.0",
"scripts": {
"test": "pnpm test:file tests/**/*.spec.ts",
"test:file": "TS_NODE_PROJECT=../../tsconfig.test.json mocha -r ts-node/register --timeout 60000",
"test:coverage": "nyc pnpm test"
},
"peerDependencies": {
"ethers": ">=6"
},
"dependencies": {
"@0xsequence/core": "workspace:*",
"@0xsequence/migration": "workspace:*",
"@0xsequence/replacer": "workspace:*",
"@0xsequence/utils": "workspace:*",
"idb": "^7.1.1"
},
"devDependencies": {
"@0xsequence/signhub": "workspace:*",
"@0xsequence/tests": "workspace:*",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"ethers": "6.13.4",
"fake-indexeddb": "^4.0.1",
"nyc": "^15.1.0"
},
"files": [
"src",
"dist"
]
}