-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "@holochain/hc-seed-bundle",
"version": "0.1.1",
"description": "Typescript SeedBundle parsing and generation library.",
"keywords": [
"holo",
"holochain",
"keystore",
"secret",
"cryptography"
],
"repository": {
"type": "git",
"url": "github:holochain/hcSeedBundle.git"
},
"license": "Apache-2.0",
"type": "module",
"main": "out/index.js",
"types": "out/index.d.ts",
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/bun": "latest",
"@types/libsodium-wrappers-sumo": "^0.7.8",
"bun-plugin-dts": "^0.2.3",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.1",
"prettier": "^3.2.5",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"typescript-eslint": "^7.10.0"
},
"scripts": {
"buildLib": "rm -rf out && bun run build.js",
"test": "bun test",
"lint": "eslint . --fix",
"pack": "npm pack",
"format": "prettier --write .",
"prepare": "husky",
"doc": "typedoc --out docs --readme README.md index.ts"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@msgpack/msgpack": "^3.0.0-beta2",
"libsodium-wrappers-sumo": "^0.7.13"
}
}