-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.01 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.01 KB
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
80
81
82
83
84
85
{
"name": "kaspeak-sdk",
"version": "1.0.0",
"main": "pkg/cjs/index.cjs",
"module": "pkg/esm/index.js",
"exports": {
"import": {
"types": "./pkg/types/index.d.ts",
"default": "./pkg/esm/index.js"
},
"require": {
"types": "./pkg/types/index.d.ts",
"default": "./pkg/cjs/index.cjs"
}
},
"scripts": {
"build": "node build.js && tsc",
"clean": "rm -rf pkg",
"docs:api:ru": "typedoc --out docs/ru/04-api-md",
"docs:api:en": "typedoc --out docs/en/04-api-md",
"docs:api": "npm run docs:api:ru && pnpm run docs:api:en",
"docs:build": "npm run docs:api && mkdocs build",
"docs:serve": "mkdocs serve -a 127.0.0.1:8000",
"docs:version": "mike deploy --update-aliases",
"docs:alias": "mike set-default latest",
"example:quick-start": "node examples/quick-start.cjs",
"example:secret-message": "node examples/secret-message.cjs",
"example:delegate": "node examples/delegate.cjs"
},
"bin": {
"kaspeak-example": "bin/run_example.cjs"
},
"author": "Kaspeak <kaspeak@proton.me>",
"repository": {
"type": "git",
"url": "git+https://github.com/kaspeak/kaspeak-sdk.git"
},
"license": "MIT",
"keywords": [
"kas",
"kaspa",
"kaspeak",
"kaspeak-sdk",
"messaging",
"web3",
"messenger",
"social",
"encryption",
"wasm",
"protocol",
"transport",
"p2p",
"networking",
"decentralization"
],
"bugs": {
"url": "https://github.com/kaspeak/kaspeak-sdk/issues"
},
"homepage": "https://github.com/kaspeak/kaspeak-sdk/#readme",
"files": [
"pkg",
"bin",
"examples"
],
"type": "module",
"dependencies": {
"@bokuweb/zstd-wasm": "^0.0.27",
"@noble/hashes": "^1.8.0",
"@noble/secp256k1": "^2.2.3",
"@stablelib/xchacha20poly1305": "^2.0.1",
"bn.js": "^5.2.2",
"cborg": "^4.2.12",
"elliptic": "^6.6.1",
"kaspa-wasm": "github:kaspeak/kaspa-wasm#v1.0.1",
"loglevel": "^1.9.2"
},
"devDependencies": {
"@types/bn.js": "^5.2.0",
"@types/elliptic": "^6.4.18",
"esbuild": "^0.25.5",
"typedoc": "^0.28.5",
"typedoc-plugin-markdown": "^4.7.0",
"typescript": "^5.8.3"
}
}