mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-22 11:27:59 +00:00
21 lines
569 B
JSON
21 lines
569 B
JSON
{
|
|
"name": "revive",
|
|
"version": "1.0.0",
|
|
"description": "Revive compiler",
|
|
"main": "run_revive.js",
|
|
"dependencies": {
|
|
"solc": "^0.8.28"
|
|
},
|
|
"scripts": {
|
|
"build": "cp ../target/wasm32-unknown-emscripten/release/resolc.js ../target/wasm32-unknown-emscripten/release/resolc.wasm ./src && npx rollup -c",
|
|
"test": "npm run build && node run_revive.js"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.26.0",
|
|
"@babel/preset-env": "^7.26.0",
|
|
"@rollup/plugin-babel": "^6.0.4",
|
|
"rollup": "^4.27.3",
|
|
"rollup-plugin-copy": "^3.5.0"
|
|
}
|
|
}
|