forked from fission-codes/one-webcrypto
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 859 Bytes
/
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
{
"name": "@storacha/one-webcrypto",
"version": "1.0.1",
"description": "Import the webcrypto API as a single module in both nodejs and browsers.",
"repository": {
"type": "git",
"url": "git+https://github.com/storacha-network/one-webcrypto.git"
},
"author": "Philipp Krüger <philipp@fission.codes>",
"license": "MIT",
"types": "index.d.ts",
"main": "dynamic.cjs",
"exports": {
".": {
"browser": "./browser.mjs",
"import": "./node.mjs",
"require": "./node.cjs",
"types": "./index.d.ts"
},
"./package.json": "./package.json"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bugs": {
"url": "https://github.com/storacha-network/one-webcrypto/issues"
},
"homepage": "https://github.com/storacha-network/one-webcrypto#readme"
}