@iota-big3/sdk-cli
Version:
CLI tools for School OS SDK
83 lines (82 loc) • 2.12 kB
JSON
{
"name": "@iota-big3/sdk-cli",
"version": "2.0.2",
"description": "CLI tools for School OS SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"schoolos": "./bin/schoolos.js"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"benchmark": "node dist/__benchmarks__/performance.bench.js",
"lint": "eslint src bin --ext .ts,.js",
"lint:fix": "eslint src bin --ext .ts,.js --fix",
"type-check": "tsc --noEmit",
"publish:cli": "./scripts/publish.sh",
"publish:dry": "./scripts/publish.sh --dry-run"
},
"keywords": [
"schoolos",
"sdk",
"cli",
"tools"
],
"author": "School OS Team",
"license": "MIT",
"dependencies": {
"commander": "^11.1.0",
"chalk": "^4.1.2",
"inquirer": "^8.2.6",
"ora": "^5.4.1",
"fs-extra": "^11.2.0",
"js-yaml": "^4.1.0",
"chokidar": "^3.5.3",
"lodash.debounce": "^4.0.8",
"boxen": "^5.1.2",
"cli-table3": "^0.6.3",
"globby": "^11.1.0",
"prettier": "^2.8.8",
"blessed": "^0.1.81",
"blessed-contrib": "^4.11.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/inquirer": "^8.2.6",
"@types/fs-extra": "^11.0.4",
"@types/blessed": "^0.1.22",
"@types/js-yaml": "^4.0.9",
"@types/lodash.debounce": "^4.0.9",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"jest": "^29.7.0",
"@types/jest": "^29.5.10",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1"
},
"peerDependencies": {
"@iota-big3/sdk-core": "^2.0.0",
"@iota-big3/sdk-generators": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "restricted",
"registry": "https://registry.npmjs.org/",
"@iota-big3:registry": "https://registry.npmjs.org/"
}
}