@hacxy/json2ts
Version:
Json to typescript types generator
59 lines • 1.37 kB
JSON
{
"name": "@hacxy/json2ts",
"type": "module",
"version": "0.3.0",
"description": "Json to typescript types generator",
"author": {
"name": "hacxy",
"email": "hacxy.js@outlook.com",
"url": "https://github.com/hacxy"
},
"license": "MIT",
"homepage": "https://github.com/hacxy/json2ts",
"repository": "https://github.com/hacxy/json2ts",
"bugs": {
"url": "https://github.com/hacxy/json-ts/issues"
},
"keywords": [
"json",
"typescript",
"types",
"json2typescript",
"json2ts"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"dependencies": {
"quicktype-core": "23.0.146",
"typescript": "5.4.5"
},
"devDependencies": {
"@antfu/eslint-config": "^4.18.0",
"@hacxy/bump": "^0.1.0",
"@hacxy/eslint-config": "^0.4.0",
"@types/node": "^20.12.7",
"@vitest/ui": "^1.5.0",
"eslint": "^9.31.0",
"typescript-eslint": "^7.6.0",
"vite": "^5.2.8",
"vite-plugin-dts": "^3.3.1",
"vitest": "^3.2.4"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:staged": "eslint --fix",
"dev": "vite build --watch",
"build": "vite build",
"test": "vitest run",
"test:ui": "vitest --ui",
"release": "bump"
}
}