typescript-scaffolder
Version:
 ### Unit Test Coverage: 96.77%
75 lines (74 loc) • 1.54 kB
JSON
{
"name": "typescript-scaffolder",
"version": "2.1.2",
"keywords": [
"typescript",
"codegen",
"axios",
"json",
"json-schema",
"env",
"scaffold",
"api-client",
"openapi-alternative",
"typescript-generator",
"cli",
"webhooks",
"express"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"typescript-codegen": "dist/cli.js"
},
"scripts": {
"dev": "ts-node index.dev.ts",
"test:all": "jest --all",
"test:coverage": "jest --coverage",
"test:failures": "jest --onlyFailures",
"build": "tsc",
"start": "npm run build -- -w"
},
"author": "Eric Famanas (The Coding Carpenter)",
"license": "MIT",
"dependencies": {
"@faker-js/faker": "^9.8.0",
"@types/node": "^22.15.21",
"axios": "^1.10.0",
"commander": "^14.0.0",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"faker": "^6.6.6",
"fs-extra": "^11.3.0",
"quicktype-core": "^23.2.5",
"ts-morph": "^26.0.0"
},
"devDependencies": {
"@types/express": "^5.0.2",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.21",
"jest": "^29.7.0",
"quicktype-core": "^23.2.5",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
},
"nodemonConfig": {
"watch": [
""
],
"ext": "ts",
"ignore": [
"*.test.ts"
],
"delay": 3,
"execMap": {
"ts": "ts-node"
}
}
}