2020-05-14 12:20:39 +00:00
|
|
|
{
|
2021-04-08 10:55:33 +00:00
|
|
|
"name": "@fluencelabs/fluence",
|
2021-12-17 14:12:09 +00:00
|
|
|
"version": "0.0.0",
|
2021-09-27 19:11:35 +00:00
|
|
|
"description": "TypeScript implementation of Fluence Peer",
|
2021-04-08 10:55:33 +00:00
|
|
|
"main": "./dist/index.js",
|
|
|
|
"typings": "./dist/index.d.ts",
|
|
|
|
"scripts": {
|
2022-02-04 19:39:41 +00:00
|
|
|
"compile-aqua": "npm run compile-aqua:src && npm run compile-aqua:test",
|
|
|
|
"compile-aqua:src": "aqua -i ./aqua/src/ -o ./src/internal/_aqua",
|
|
|
|
"compile-aqua:test": "aqua -i ./aqua/tests/ -o ./src/__test__/_aqua",
|
2021-05-11 21:01:44 +00:00
|
|
|
"test": "jest --watch",
|
|
|
|
"test:all": "jest",
|
|
|
|
"test:unit": "jest --testPathPattern=src/__test__/unit",
|
|
|
|
"test:integration": "jest --testPathPattern=src/__test__/integration",
|
2021-09-08 09:42:30 +00:00
|
|
|
"build": "tsc",
|
2021-09-27 19:11:35 +00:00
|
|
|
"build:docs": "typedoc"
|
2021-04-08 10:55:33 +00:00
|
|
|
},
|
|
|
|
"repository": "https://github.com/fluencelabs/fluence-js",
|
|
|
|
"author": "Fluence Labs",
|
|
|
|
"license": "Apache-2.0",
|
2021-12-28 17:53:25 +00:00
|
|
|
"bin": {
|
2022-04-21 11:13:26 +00:00
|
|
|
"copy-marine": "dist/tools/copyMarine.js"
|
2021-12-28 17:53:25 +00:00
|
|
|
},
|
2021-04-08 10:55:33 +00:00
|
|
|
"dependencies": {
|
2022-01-27 13:05:20 +00:00
|
|
|
"@chainsafe/libp2p-noise": "^4.1.1",
|
2022-04-21 11:13:26 +00:00
|
|
|
"@fluencelabs/avm": "0.23.0",
|
|
|
|
"@fluencelabs/marine-js": "0.2.3",
|
2021-04-08 10:55:33 +00:00
|
|
|
"async": "3.2.0",
|
2022-04-21 11:13:26 +00:00
|
|
|
"browser-or-node": "^2.0.0",
|
2021-04-08 10:55:33 +00:00
|
|
|
"bs58": "4.0.1",
|
2022-02-17 07:54:38 +00:00
|
|
|
"buffer": "^6.0.3",
|
2021-04-08 10:55:33 +00:00
|
|
|
"cids": "0.8.1",
|
|
|
|
"it-length-prefixed": "3.0.1",
|
|
|
|
"it-pipe": "1.1.0",
|
2022-01-27 13:05:20 +00:00
|
|
|
"libp2p": "=0.33.0",
|
|
|
|
"libp2p-crypto": "=0.20.0",
|
|
|
|
"libp2p-mplex": "=0.10.2",
|
|
|
|
"libp2p-websockets": "^0.16.2",
|
2021-04-08 10:55:33 +00:00
|
|
|
"loglevel": "1.7.0",
|
2022-01-27 13:05:20 +00:00
|
|
|
"multiaddr": "^10.0.1",
|
2022-02-17 10:24:26 +00:00
|
|
|
"multiformats": "^9.6.4",
|
2022-01-27 13:05:20 +00:00
|
|
|
"peer-id": "=0.15.4",
|
2022-03-31 20:37:25 +00:00
|
|
|
"platform": "^1.3.6",
|
2021-10-20 19:20:43 +00:00
|
|
|
"rxjs": "^7.3.0",
|
|
|
|
"ts-pattern": "^3.3.3",
|
2022-02-17 10:24:26 +00:00
|
|
|
"uuid": "8.3.0"
|
2021-04-08 10:55:33 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-03-23 17:22:31 +00:00
|
|
|
"@fluencelabs/aqua": "^0.7.0-285",
|
|
|
|
"@fluencelabs/aqua-lib": "^0.4.3",
|
2021-04-08 10:55:33 +00:00
|
|
|
"@types/jest": "^26.0.22",
|
2022-03-31 20:37:25 +00:00
|
|
|
"@types/platform": "^1.3.4",
|
2021-04-08 10:55:33 +00:00
|
|
|
"jest": "^26.6.3",
|
2021-12-22 17:40:50 +00:00
|
|
|
"js-base64": "^3.7.2",
|
2021-04-08 10:55:33 +00:00
|
|
|
"ts-jest": "^26.5.4",
|
2021-09-08 09:42:30 +00:00
|
|
|
"typedoc": "^0.21.9",
|
2021-12-22 17:40:50 +00:00
|
|
|
"typescript": "^4.0.0"
|
2021-04-08 10:55:33 +00:00
|
|
|
}
|
2020-05-14 12:20:39 +00:00
|
|
|
}
|