typebox-cli
Version:
CLI tool for various TypeBox and JSON Schema operations
56 lines (55 loc) • 1.25 kB
JSON
{
"name": "typebox-cli",
"version": "1.0.5",
"description": "CLI tool for various TypeBox and JSON Schema operations",
"repository": {
"type": "git",
"url": "https://github.com/gsuess/typebox-cli"
},
"keywords": [
"typebox",
"json",
"schema",
"validation",
"cli",
"codegen",
"typescript"
],
"main": "dist/index.js",
"bin": {
"typebox": "dist/cli.js"
},
"type": "module",
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.10",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.21.0",
"vitest": "^3.0.5"
},
"scripts": {
"type-check": "tsc --noEmit",
"build": "tsc --build ./tsconfig-build.json",
"clean": "tsc --build --clean",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepublishOnly": "npm run build",
"test": "vitest"
},
"private": false,
"files": [
"dist"
],
"dependencies": {
"@sinclair/typebox": "^0.34.20",
"@sinclair/typebox-codegen": "^0.11.0",
"commander": "^13.1.0",
"jiti": "^2.4.2"
},
"license": "MIT"
}