UNPKG

clvm

Version:

Javascript implementation of chia lisp

64 lines 1.54 kB
{ "name": "clvm", "version": "3.0.0", "author": "ChiaMineJP <admin@chiamine.jp>", "description": "Javascript implementation of chia lisp", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/Chia-Mine/clvm-js.git" }, "bugs": "https://github.com/Chia-Mine/clvm-js/issues", "main": "./index.js", "typings": "./index.d.ts", "scripts": { "build": "node pre_build.js && tsc --sourcemap false && webpack", "test": "jest" }, "keywords": [ "chia", "clvm", "chialisp", "typescript" ], "engines": { "node": ">=12.13.0" }, "dependencies": { "bls-signatures": "^2.0.3", "clvm_wasm": "^0.7.0", "jscrypto": "^1.0.3" }, "devDependencies": { "@types/jest": "^29.5.12", "@types/node": "^20.12.10", "@typescript-eslint/eslint-plugin": "^7.8.0", "@typescript-eslint/parser": "^7.2.0", "eslint": "^8.57.0", "eslint-plugin-import": "^2.29.1", "eslint-plugin-jsdoc": "^48.2.3", "fork-ts-checker-webpack-plugin": "^9.0.2", "jest": "^29.7.0", "terser-webpack-plugin": "^5.3.10", "ts-jest": "^29.1.2", "ts-loader": "^9.5.1", "typescript": "^5.4.5", "webpack": "^5.91.0", "webpack-cli": "^5.1.4" }, "browserslist": [ "edge >= 79", "firefox >= 68", "chrome >= 67", "safari > 14", "opera >= 54", "ios_saf >= 14.4", "android >= 67", "op_mob >= 48", "and_chr >= 67", "and_ff >= 68", "samsung >= 9.2", "node >= 10.4.0", "electron >= 4.0.0" ] }