mirror of
https://github.com/fluencelabs/fluence-js.git
synced 2024-12-05 02:10:18 +00:00
70 lines
2.3 KiB
JSON
70 lines
2.3 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",
|
|
"compile-aqua:playground": "aqua -i ./aqua/playground/ -o ./playground/_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",
|
|
"playground:start": "webpack serve"
|
|
},
|
|
"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": "6.1.1",
|
|
"@fluencelabs/avm": "0.24.2",
|
|
"@fluencelabs/marine-js": "0.2.5",
|
|
"async": "3.2.0",
|
|
"browser-or-node": "^2.0.0",
|
|
"bs58": "4.0.1",
|
|
"buffer": "^6.0.3",
|
|
"cids": "1.1.9",
|
|
"it-length-prefixed": "7.0.1",
|
|
"it-pipe": "2.0.3",
|
|
"libp2p": "0.36.2",
|
|
"libp2p-crypto": "0.21.2",
|
|
"libp2p-mplex": "0.10.7",
|
|
"libp2p-websockets": "0.16.2",
|
|
"loglevel": "1.7.0",
|
|
"multiaddr": "10.0.1",
|
|
"multiformats": "9.6.5",
|
|
"peer-id": "0.16.0",
|
|
"platform": "^1.3.6",
|
|
"rxjs": "^7.3.0",
|
|
"ts-pattern": "^3.3.3",
|
|
"uuid": "8.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@fluencelabs/aqua-lib": "^0.4.3",
|
|
"@fluencelabs/fluence-network-environment": "^1.0.13",
|
|
"@types/jest": "^26.0.22",
|
|
"@types/platform": "^1.3.4",
|
|
"css-loader": "^6.5.1",
|
|
"html-webpack-plugin": "^5.5.0",
|
|
"jest": "^26.6.3",
|
|
"js-base64": "^3.7.2",
|
|
"process": "^0.11.10",
|
|
"style-loader": "^3.3.1",
|
|
"ts-jest": "^26.5.4",
|
|
"ts-loader": "^8.3.0",
|
|
"typedoc": "^0.21.9",
|
|
"typescript": "^4.0.0",
|
|
"webpack": "^5.65.0",
|
|
"webpack-cli": "^4.9.1",
|
|
"webpack-dev-server": "^4.6.0"
|
|
}
|
|
}
|