Files
type-from-json/package.json
7000pctAUTO 4f5998aed5
Some checks failed
CI / test (push) Has been cancelled
Initial upload with CI/CD workflow
2026-01-31 12:25:55 +00:00

50 lines
1.2 KiB
JSON

{
"name": "type-from-json",
"version": "1.0.0",
"description": "A CLI tool that automatically generates TypeScript type definitions from runtime API responses or JSON files",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"type-from-json": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"test": "jest --coverage",
"prepare": "npm run build"
},
"keywords": [
"typescript",
"types",
"cli",
"json",
"type-generation"
],
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"chokidar": "^4.0.0",
"commander": "^12.0.0",
"glob": "^11.0.0"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"jest": "^29.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.54.0"
},
"engines": {
"node": ">=18.0.0"
}
}