mirror of
https://github.com/fluencelabs/fluence-js.git
synced 2024-12-04 18:00:18 +00:00
62 lines
2.0 KiB
JSON
62 lines
2.0 KiB
JSON
{
|
|
"name": "@fluencelabs/fluence",
|
|
"version": "0.0.0",
|
|
"description": "TypeScript implementation of Fluence Peer",
|
|
"main": "./dist/index.js",
|
|
"typings": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"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",
|
|
"test": "jest --watch",
|
|
"test:all": "jest",
|
|
"test:unit": "jest --testPathPattern=src/__test__/unit",
|
|
"test:integration": "jest --testPathPattern=src/__test__/integration",
|
|
"build": "tsc",
|
|
"build:docs": "typedoc"
|
|
},
|
|
"repository": "https://github.com/fluencelabs/fluence-js",
|
|
"author": "Fluence Labs",
|
|
"license": "Apache-2.0",
|
|
"bin": {
|
|
"copy-marine": "dist/tools/copyMarine.js"
|
|
},
|
|
"dependencies": {
|
|
"@chainsafe/libp2p-noise": "^4.1.1",
|
|
"@fluencelabs/avm": "0.24.2",
|
|
"@fluencelabs/marine-js": "0.2.5",
|
|
"async": "3.2.3",
|
|
"browser-or-node": "^2.0.0",
|
|
"bs58": "5.0.0",
|
|
"buffer": "^6.0.3",
|
|
"cids": "1.1.9",
|
|
"it-length-prefixed": "5.0.3",
|
|
"it-pipe": "1.1.0",
|
|
"libp2p": "0.36.2",
|
|
"libp2p-crypto": "0.21.2",
|
|
"libp2p-mplex": "0.10.7",
|
|
"libp2p-websockets": "0.16.2",
|
|
"loglevel": "1.8.0",
|
|
"multiaddr": "10.0.1",
|
|
"multiformats": "9.6.5",
|
|
"peer-id": "0.16.0",
|
|
"platform": "^1.3.6",
|
|
"rxjs": "^7.5.5",
|
|
"ts-pattern": "3.3.3",
|
|
"uuid": "8.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@fluencelabs/aqua": "^0.7.2-307",
|
|
"@fluencelabs/aqua-lib": "^0.5.1",
|
|
"@types/bs58": "^4.0.1",
|
|
"@types/jest": "^27.5.1",
|
|
"@types/platform": "^1.3.4",
|
|
"@types/uuid": "^8.3.4",
|
|
"jest": "^28.1.0",
|
|
"js-base64": "^3.7.2",
|
|
"ts-jest": "^28.0.2",
|
|
"typedoc": "^0.22.15",
|
|
"typescript": "^4.6.4"
|
|
}
|
|
}
|