-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 870 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 870 Bytes
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
{
"name": "@rootlessnet/crypto",
"version": "2.0.0",
"description": "Cryptographic primitives for RootlessNet protocol",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
}
},
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target node",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@noble/ciphers": "^1.0.0",
"@noble/curves": "^1.6.0",
"@noble/hashes": "^1.5.0",
"multiformats": "^13.3.0"
},
"devDependencies": {
"typescript": "^5.6.0",
"@types/bun": "^1.1.0"
},
"files": ["dist", "src"],
"repository": {
"type": "git",
"url": "https://github.com/RootlessNet/protocol.git",
"directory": "packages/crypto"
},
"license": "MIT"
}