aquavm/npm/package.json
Pavel 0ddc44bf52
Npm package (#98)
This commit migrates wasm wrapper from JS SDK into the air interpreter package.

Changes include:

* Adding directory for npm package
* Setting up typescript build pipeline
* Renaming package to air-interpreter
* Fixing CI pipelines to support the new build process
* Fixing issue with memory access violation in wasm wrapper
2021-05-05 15:43:50 +03:00

28 lines
665 B
JSON

{
"name": "@fluencelabs/air-interpreter",
"description": "Aqua intermediary representation interpreter",
"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",
"jest": "^26.6.3",
"ts-jest": "^26.5.5",
"typescript": "^3.9.5"
}
}