45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "optolith-tsjsonschemamd",
|
|
"version": "0.10.6",
|
|
"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"
|
|
}
|