-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 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
{
"name": "@projectdysnomia/libsodium",
"version": "0.1.0",
"description": "A minimal libsodium wrapper for Project Dysnomia",
"main": "index.js",
"type": "commonjs",
"types": "./index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/projectdysnomia/libsodium.git"
},
"author": "Project Dysnomia Contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/projectdysnomia/libsodium/issues"
},
"homepage": "https://github.com/projectdysnomia/libsodium#readme",
"peerDependencies": {
"sodium-native": "^4.1.1"
},
"peerDependenciesMeta": {
"sodium-native": {
"optional": true
}
},
"exports": {
".": {
"default": "./index.js",
"types": "./index.d.ts"
},
"./*": "./*",
"./native": {
"default": "./native.js",
"types": "./index.d.ts"
},
"./wasm": {
"default": "./wasm.js",
"types": "./index.d.ts"
}
}
}