mirror of
https://github.com/fluencelabs/registry.git
synced 2025-04-24 17:52:14 +00:00
33 lines
838 B
JSON
33 lines
838 B
JSON
{
|
|
"name": "registry-experiments",
|
|
"version": "0.1.0",
|
|
"description": "Fluence Registry experiments",
|
|
"main": "./dist/src/index.js",
|
|
"typings": "./dist/src/index.d.ts",
|
|
"files": [
|
|
"dist/*"
|
|
],
|
|
"bic": [
|
|
"client-peer/*",
|
|
"*.aqua",
|
|
"package-lock.json"
|
|
],
|
|
"scripts": {
|
|
"prestart": "npm run compile-aqua",
|
|
"prebuild": "npm run compile-aqua",
|
|
"compile-aqua": "aqua --import . -i ./aqua/ -o ./src/generated",
|
|
"start": "node -r ts-node/register src/index.ts",
|
|
"build": "tsc",
|
|
"watch-aqua": "chokidar \"**/*.aqua\" -c \"npm run compile-aqua\""
|
|
},
|
|
"dependencies": {
|
|
"@fluencelabs/fluence": "0.21.5",
|
|
"@fluencelabs/fluence-network-environment": "1.0.13",
|
|
"@fluencelabs/registry": "0.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"ts-node": "^10.7.0",
|
|
"typescript": "^4.6.2"
|
|
}
|
|
}
|