This repository has been archived by the owner on Dec 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.7 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "adnl",
"version": "0.0.13",
"description": "ADNL JavaScript implementation",
"main": "./dist/node.js",
"browser": "./dist/browser.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "mocha './test/**/*.test.ts' --require ts-node/register",
"coverage": "nyc --all mocha './test/**/*.test.ts' --require ts-node/register",
"build:doc": "typedoc"
},
"author": "TonStack",
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/aes-js": "^3.1.1",
"@types/chai": "^4.3.0",
"@types/crypto-js": "^4.1.1",
"@types/mocha": "^9.1.0",
"@types/sinon": "^10.0.11",
"chai": "^4.3.6",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"mocha": "^9.2.1",
"nyc": "^15.1.0",
"sinon": "^13.0.1",
"ts-node": "^10.7.0",
"typedoc": "^0.22.13",
"typedoc-plugin-markdown": "^3.11.14",
"typedoc-plugin-merge-modules": "^3.1.0",
"typescript": "^4.6.3"
},
"types": "./dist/index.d.ts",
"directories": {
"doc": "docs",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tonstack/adnl-js.git"
},
"keywords": [
"adnl"
],
"bugs": {
"url": "https://github.com/tonstack/adnl-js/issues"
},
"homepage": "https://github.com/tonstack/adnl-js#readme",
"dependencies": {
"@noble/ed25519": "^1.6.1",
"aes-js": "^3.1.2",
"buffer": "^6.0.3",
"crypto-js": "^4.1.1",
"events": "^3.3.0",
"isomorphic-ws": "^5.0.0",
"tweetnacl": "^1.0.3",
"ws": "^8.8.1"
}
}