aquavm/avm/client/package.json
Mike Voronov 4a4fc0889b
Make interpreter async (#130)
Co-authored-by: folex <0xdxdy@gmail.com>
Co-authored-by: Pavel Murygin <pavel.murygin@gmail.com>
2021-10-04 10:58:00 +03:00

29 lines
656 B
JSON

{
"name": "@fluencelabs/avm",
"description": "Aquamarine VM",
"version": "0.0.0",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"repository": "https://github.com/fluencelabs/air",
"author": "Fluence Labs",
"license": "Apache 2.0",
"files": [
"dist/*"
],
"scripts": {
"build": "tsc",
"test": "jest"
},
"private": false,
"dependencies": {
"base64-js": "1.5.1"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^14.0.0",
"jest": "^27.2.4",
"ts-jest": "^27.0.5",
"typescript": "^4.0.0"
}
}