-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.66 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
{
"name": "@metaphor-xyz/hooks",
"version": "0.0.1",
"description": "React hooks for Metaphor apps",
"homepage": "https://github.com/metaphor-xyz/hooks",
"repository": {
"type": "git",
"url": "https://github.com/metaphor-xyz/hooks.git"
},
"main": "dist/index.js",
"types": "dist",
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"lint": "eslint \"src/**/*.{ts,tsx,js,jsx}\"",
"fix": "eslint --fix \"src/**/*.{ts,tsx,js,jsx}\"",
"prepare": "husky install",
"dev": "tsc-watch -w",
"test": "jest"
},
"author": "Metaphor",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@metaphor-xyz/scaffold": "^1.2.1",
"@stablelib/random": "^1.0.1",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.20",
"babel-loader": "^8.2.3",
"deepmerge": "^4.2.2",
"husky": "^7.0.4",
"jest": "^27.4.5",
"jest-environment-ceramic": "^0.14.0",
"lint-staged": "^12.0.0",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"semantic-release": "^18.0.1",
"tsc-watch": "^4.6.0",
"typescript": "4.4.2"
},
"peerDependencies": {
"react": ">=16.8"
},
"dependencies": {
"@3id/connect": "^0.2.5",
"@ceramicnetwork/3id-did-resolver": "^1.4.12",
"@ceramicnetwork/common": "^1.10.1",
"@ceramicnetwork/http-client": "^1.5.3",
"@ceramicnetwork/stream-tile": "^1.5.3",
"dids": "^2.4.3",
"ethers": "^5.5.2",
"key-did-provider-ed25519": "^1.1.0",
"key-did-resolver": "^1.4.0"
}
}