-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.09 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
{
"name": "@3id/test-utils",
"version": "0.4.0",
"author": "3Box Labs",
"license": "(Apache-2.0 OR MIT)",
"private": true,
"homepage": "https://github.com/ceramicstudio/js-3id#readme",
"keywords": [
"3id",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/ceramicstudio/js-3id",
"directory": "packages/test-utils"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=14.14"
},
"sideEffects": false,
"scripts": {
"build:clean": "del dist",
"build:js": "swc src -d ./dist --config-file ../../.swcrc",
"build:types": "tsc --emitDeclarationOnly --skipLibCheck",
"build": "yarn build:clean && yarn build:types && yarn build:js",
"lint": "eslint src --fix",
"prepare": "yarn build"
},
"dependencies": {
"@ceramicnetwork/blockchain-utils-linking": "^2.0.0",
"@ethersproject/hdnode": "^5.0.8",
"@ethersproject/wallet": "^5.0.11",
"caip": "^1.0.0",
"uint8arrays": "^3.0.0"
}
}