This repository has been archived by the owner on Nov 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.65 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
{
"name": "ceramic-cacao",
"version": "1.4.0",
"description": "Typescript library for Ceramic OCAP",
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
}
},
"files": [
"lib/*"
],
"sideEffects": false,
"scripts": {
"test": "./node_modules/.bin/jest",
"build": "microbundle --compress=false --format esm,cjs",
"lint": "./node_modules/.bin/eslint ./src --ext .js,.ts",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"clean": "rm -rf ./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ceramicnetwork/cacao.git"
},
"author": "Haardik <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ceramicnetwork/cacao/issues"
},
"homepage": "https://github.com/ceramicnetwork/cacao#readme",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^28.1.8",
"@types/luxon": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.6.0",
"eslint-config-3box": "^0.4.0",
"jest": "^28.1.3",
"luxon": "^3.0.1",
"microbundle": "^0.15.1",
"prettier": "^2.4.1",
"typescript": "^4.5.4"
},
"dependencies": {
"@ethersproject/wallet": "^5.5.0",
"@ipld/dag-cbor": "^7.0.1",
"@stablelib/ed25519": "^1.0.2",
"apg-js": "^4.1.1",
"caip": "^1.0.0",
"multiformats": "^9.5.1",
"uint8arrays": "^3.0.0"
}
}