-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.63 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
61
62
63
64
65
66
{
"name": "@identity.com/did-iplds",
"version": "1.0.1",
"description": "IPLDS - Secure DAG storage on IPFS",
"keywords": [
"ipfs",
"ipld",
"iplds",
"dag",
"storage",
"jwk",
"did"
],
"bugs": "https://github.com/identity-com/iplds/issues",
"repository": {
"type": "git",
"url": "https://github.com/identity-com/iplds"
},
"license": "MIT",
"author": "Blockvis <[email protected]> (https://blockvis.com)",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
"files": [
"README.md",
"dist"
],
"scripts": {
"analyze": "size-limit --why",
"build": "rollup -c",
"docker:start": "docker-compose -f ../../docker-compose.yaml up -d",
"docker:stop": "docker-compose -f ../../docker-compose.yaml down",
"lint": "eslint \"**/*.ts\"",
"lint:fix": "yarn lint --fix",
"size": "size-limit",
"start": "rollup -cw",
"test": "run-script-os",
"test:darwin:linux": "yarn docker:start && yarn test:jest; yarn docker:stop",
"test:jest": "jest --verbose",
"test:win32": "yarn docker:start && yarn test:jest & yarn docker:stop"
},
"lint-staged": {
"**/*.ts": "yarn lint:fix"
},
"resolutions": {
"**/ua-parser-js": "1.0.2"
},
"dependencies": {
"@identity.com/did-key-resolver": "*",
"@identity.com/iplds": "*",
"@identity.com/jwk": "*",
"did-resolver": "^3.1.3",
"ipfs-http-client": "^52.0.3",
"multibase": "^4.0.6",
"uint8arrays": "^3.0.0"
},
"engines": {
"node": ">=16.0"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "250 KB"
}
]
}