laconic-registry-cli/package.json

33 lines
773 B
JSON
Raw Normal View History

2022-04-22 12:22:17 +00:00
{
2022-09-28 19:31:20 +00:00
"name": "laconic-sdk",
2022-04-22 12:22:17 +00:00
"version": "0.1.0",
"main": "index.js",
2022-09-28 19:31:20 +00:00
"repository": "git@github.com:cerc-io/laconic-sdk.git",
2022-04-22 12:22:17 +00:00
"author": "",
"license": "UNLICENSED",
"devDependencies": {
2022-04-26 06:57:02 +00:00
"@types/fs-extra": "^9.0.13",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.182",
2022-04-22 12:22:17 +00:00
"@types/node": "^17.0.25",
"@types/yargs": "^17.0.10",
"typescript": "^4.6.3"
},
"dependencies": {
2022-04-26 06:57:02 +00:00
"fs-extra": "^10.1.0",
"js-yaml": "^4.1.0",
2022-09-29 02:20:11 +00:00
"laconic-client": "https://github.com/cerc-io/laconic-client.git#dboreham/release",
"lodash": "^4.17.21",
"lodash-clean": "^2.2.3",
2022-04-22 12:22:17 +00:00
"yargs": "^17.4.1"
},
"scripts": {
"lint": "eslint .",
"clean": "rm -rf ./dist",
"build": "tsc"
},
"bin": {
2022-09-28 19:31:20 +00:00
"laconic": "bin/laconic"
2022-04-22 12:22:17 +00:00
}
}