@tact-lang/deployer
Version:
Tact smart contract deployer
63 lines (62 loc) • 1.34 kB
JSON
{
"name": "@tact-lang/deployer",
"version": "0.2.0",
"description": "Tact smart contract deployer",
"files": [
"dist/**/*"
],
"main": "./dist/index.js",
"scripts": {
"test": "jest",
"build": "rm -rf dist && tsc",
"release": "yarn test && yarn build && yarn release-it --npm.yarn1"
},
"repository": {
"type": "git",
"url": "https://github.com/tact-lang/tact-deployer"
},
"bugs": {
"url": "https://github.com/tact-lang/tact-deployer/issues"
},
"author": "Shahar Yakir",
"license": "MIT",
"homepage": "https://github.com/tact-lang/tact-deployer",
"keywords": [
"ton",
"tact",
"source",
"verifier",
"sources"
],
"dependencies": {
"axios": "^1.3.4",
"form-data": "^4.0.0",
"zod": "^3.20.6"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"jest": "^29.4.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5",
"@release-it/keep-a-changelog": "^3.1.0",
"release-it": "^15.5.1"
},
"engines": {
"node": ">=14.16"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"github": {
"release": true
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md"
}
}
}
}