locklift
Version:
Node JS framework for working with Ever contracts. Inspired by Truffle and Hardhat. Helps you to build, test, run and maintain your smart contracts.
154 lines (153 loc) • 4.15 kB
JSON
{
"name": "locklift",
"version": "2.10.2",
"description": "Node JS framework for working with Ever contracts. Inspired by Truffle and Hardhat. Helps you to build, test, run and maintain your smart contracts.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --build .",
"lint": "npx eslint .",
"format": "prettier --write .",
"dev-deploy-local": "npm publish --registry http://localhost:4873/",
"dev-deploy": "npm publish --registry http://95.216.205.173:4873/",
"prepublishOnly": "npm run build",
"prepare": "husky",
"clean": "rimraf builtin-tasks internal chaiPlugin types utils everscale-inpage-provider everscale-standalone-client plugins everscale-provider everscale-client constants *.d.ts *.map *.js build-test tsconfig.tsbuildinfo"
},
"bin": {
"locklift": "internal/cli/cli.js"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"chaiPlugin/",
"constants/",
"everscale-client/",
"everscale-provider/",
"internal/",
"plugins/",
"sample-project-typescript/",
"src/",
"types/",
"utils/",
"README.md",
"*.d.ts",
"*.d.ts.map",
"*.js",
"*.js.map",
"tsconfig-base.json",
"tsconfig.json"
],
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"typesVersions": {
"*": {
".": [
"build/index.d.ts"
],
"config": [
"build/config/index.d.ts"
],
"contract": [
"build/contract/index.d.ts"
],
"factory": [
"build/factory/index.d.ts"
],
"giver": [
"build/giver/index.d.ts"
],
"utils": [
"build/utils/index.d.ts"
],
"everscale-inpage-provider": [
"build/everscale-inpage-provider/index.d.ts"
],
"everscale-standalone-client": [
"build/everscale-standalone-client/index.d.ts"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/broxus/locklift.git"
},
"keywords": [
"Everscale",
"TON",
"blockchain",
"smart-contracts",
"javascript",
"solidity",
"dapps",
"ethereum"
],
"author": "pavlovdog_ <pavlovdog.moscow@gmail.com>",
"contributors": [
"30mb1 <steam.30mb1@gmail.com>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/broxus/locklift/issues"
},
"homepage": "https://github.com/broxus/locklift#readme",
"dependencies": {
"@broxus/locklift-network": "^2.0.1",
"@types/yargs": "^17.0.35",
"axios": "^1.13.2",
"bignumber.js": "^9.3.1",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"directory-tree": "^3.5.2",
"ejs": "^4.0.1",
"env-paths": "^3.0.0",
"everscale-crypto": "^0.1.3",
"everscale-inpage-provider": "0.6.6",
"everscale-standalone-client": "3.0.3",
"find-node-modules": "^2.1.3",
"fs-extra": "^11.3.3",
"joi": "^18.0.2",
"lodash": "^4.17.23",
"mocha": "^11.7.5",
"nekoton-wasm": "npm:nekoton-wasm-locklift@^1.29.0",
"node-gzip": "^1.1.2",
"rxjs": "^7.8.2",
"semver": "^7.7.3",
"superstruct": "^2.0.2",
"tablemark": "^4.1.0",
"ts-mocha": "^11.1.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"typescript-tuple": "^5.0.1",
"underscore": "^1.13.7",
"yargs": "^17.7.2"
},
"overrides": {
"nekoton-wasm": "$nekoton-wasm",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@types/chai": "^5.2.3",
"@types/download": "^8.0.5",
"@types/ejs": "^3.1.5",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.23",
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.10",
"@types/node-gzip": "^1.1.3",
"@types/semver": "^7.7.1",
"@types/underscore": "^1.13.0",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"eslint": "9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.1.0",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"rimraf": "^6.1.2"
}
}