-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.13 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@tbd54566975/web5-react-native-polyfills",
"version": "2.1.0",
"packageManager": "[email protected]+sha256.1aa43a5304405be7a7cb9cb5de7b97de9c4e8ddd3273e4dad00d6ae3eb39f0ef",
"description": "An opinionated polyfill setup to enable web5 to work on react native",
"main": "lib/index.js",
"module": "lib/index.js",
"react-native": "lib/index.js",
"source": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"src",
"lib"
],
"keywords": [
"react-native",
"web5",
"tbd"
],
"scripts": {
"release": "release-it",
"build": "tsc",
"prepack": "yarn run build"
},
"repository": "https://github.com/tbd54566975/web5-react-native-polyfills",
"author": "tbd <[email protected]> (https://github.com/tbd54566975)",
"license": "Apache",
"bugs": {
"url": "https://github.com/tbd54566975/web5-react-native-polyfills/issues"
},
"homepage": "https://github.com/tbd54566975/web5-react-native-polyfills#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"@azure/core-asynciterator-polyfill": "^1.0.2",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@noble/hashes": "^1.5.0",
"@peculiar/webcrypto": "^1.5.0",
"event-target-polyfill": "^0.0.4",
"react-native-blob-jsi-helper": "^0.3.1",
"react-native-url-polyfill": "^2.0.0",
"readable-stream": "^4.5.2",
"realistic-structured-clone": "^3.0.0",
"text-encoding": "^0.7.0",
"web-streams-polyfill": "^4.0.0"
},
"peerDependencies": {
"@craftzdog/react-native-buffer": "*",
"@web5/agent": "*",
"@web5/api": "*",
"react-native-blob-jsi-helper": "*",
"react-native-quick-crypto": "*"
},
"devDependencies": {
"@types/react-native": "^0.73.0",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"typescript": "^5.6.2"
},
"release-it": {
"git": {
"commitMessage": "release v${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
}
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"useTabs": false
}
}