-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.15 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@ceramicnetwork/common",
"version": "5.1.0",
"description": "Ceramic common types and utilities",
"keywords": [
"ceramic",
"types",
"utilities"
],
"author": "Janko Simonovic <simonovic86@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/ceramicnetwork/js-ceramic.git"
},
"bugs": {
"url": "https://github.com/ceramicnetwork/js-ceramic/issues"
},
"homepage": "https://github.com/ceramicnetwork/js-ceramic#readme",
"license": "(Apache-2.0 OR MIT)",
"directories": {
"lib": "./lib"
},
"main": "lib/index.js",
"type": "module",
"exports": {
".": "./lib/index.js"
},
"types": "lib/index.d.ts",
"files": [
"lib"
],
"sideEffects": false,
"browser": {
"./lib/logger-provider.js": "./lib/logger-provider-browser.js",
"./lib/loggers.js": "./lib/loggers-browser.js"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest --silent --coverage --passWithNoTests",
"build": "npx tsc --project tsconfig.json",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean",
"lint": "npx eslint ./src --ext .js,.jsx,.ts,.tsx",
"clean": "npx rimraf ./lib"
},
"dependencies": {
"@ceramicnetwork/streamid": "^5.0.0",
"@didtools/cacao": "^3.0.0",
"@didtools/pkh-ethereum": "^0.2.0",
"@didtools/pkh-solana": "^0.2.0",
"@didtools/pkh-stacks": "^0.2.0",
"@didtools/pkh-tezos": "^0.3.0",
"@ipld/dag-cbor": "^9.1.0",
"@stablelib/random": "^1.0.1",
"caip": "~1.1.0",
"flat": "^5.0.2",
"it-first": "^3.0.4",
"jet-logger": "1.2.2",
"lodash.clonedeep": "^4.5.0",
"logfmt": "^1.3.2",
"multiformats": "^13.0.0",
"rxjs": "^7.8.1",
"uint8arrays": "^5.0.1"
},
"devDependencies": {
"@ceramicnetwork/base-test-utils": "^3.0.0",
"@types/lodash.clonedeep": "^4.5.6",
"@types/logfmt": "^1.2.2",
"@types/node": "^18.0.3",
"dids": "5.1.0-next.0",
"express": "^4.18.2",
"get-port": "^7.0.0",
"ipfs-core-types": "^0.14.0",
"json-schema-to-typescript": "^10.1.5",
"typescript-json-schema": "^0.52.0"
},
"gitHead": "56e646e82ee6e9cdb0b762bbbf77b8432edce367"
}