Files
ts-json-definition-transpiler/package.json
T
2024-01-12 15:17:29 +01:00

45 lines
1.1 KiB
JSON

{
"name": "optolith-tsjsonschemamd",
"version": "0.10.5",
"description": "A tool for generating both JSON Schema definitions and Markdown documentation from TypeScript files.",
"keywords": [
"typescript",
"markdown",
"json-schema",
"abstract-syntax-tree",
"code-generation"
],
"main": "./lib/main.js",
"exports": {
".": "./lib/main.js",
"./ast": "./lib/ast.js",
"./renderers": "./lib/renderers.js",
"./renderers/*": "./lib/renderers/*.js"
},
"bin": {
"otjsmd": "./lib/bin/cli.js"
},
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
"release": "standard-version",
"test": "glob -c \"node --import tsx --test\" \"./test/**/*.test.ts\""
},
"author": "Lukas Obermann",
"license": "MPL-2.0",
"dependencies": {
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/node": "^20.9.0",
"glob": "^10.3.10",
"standard-version": "^9.5.0",
"tsx": "^4.0.0"
},
"repository": "github:elyukai/optolith-tsjsonschemamd",
"bugs": {
"url": "https://github.com/elyukai/optolith-tsjsonschemamd/issues"
},
"type": "module"
}