forked from archethic-foundation/libjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.69 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
64
65
66
67
{
"name": "archethic",
"version": "1.13.2",
"description": "Archethic Javascript SDK",
"main": "index.js",
"module": "dist/archethic-browser.mjs",
"unpkg": "dist/archethic.js",
"jsdelivr": "dist/archethic.js",
"type": "module",
"exports": {
"import": "./dist/archethic-node.mjs",
"require": "./dist/archethic.cjs"
},
"scripts": {
"test": "mocha --require @babel/register",
"build": "node build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/archethic-foundation/libjs.git"
},
"keywords": [
"archethic",
"transaction-chain",
"blockchain"
],
"author": "",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/archethic-foundation/libjs/issues"
},
"homepage": "https://github.com/archethic-foundation/libjs#readme",
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/register": "^7.18.9",
"esbuild": "^0.15.10",
"mocha": "^9.1.1",
"nock": "^13.2.9"
},
"dependencies": {
"@absinthe/socket": "^0.2.1",
"base64url": "^3.0.1",
"blake2b": "^2.1.3",
"blakejs": "^1.1.1",
"buffer": "^6.0.3",
"buffer-xor": "^2.0.2",
"cross-fetch": "^3.1.4",
"crypto-browserify": "^3.12.0",
"curve25519-js": "^0.0.4",
"ed2curve": "^0.3.0",
"elliptic": "^6.5.4",
"events": "^3.3.0",
"isomorphic-ws": "^4.0.1",
"js-sha3": "^0.8.0",
"phoenix": "^1.6.6",
"stream-browserify": "^3.0.0",
"ws": "^8.5.0"
},
"browser": {
"archethic": "./dist/archethic-browser.mjs",
"crypto": "crypto-browserify",
"stream": "stream-browserify",
"buffer-xor": "buffer-xor"
}
}