UNPKG

docutils-ts

Version:

Port of the Python Docutils library to TypeScript

70 lines 1.78 kB
{ "name": "docutils-ts", "version": "1.0.7", "description": "Port of the Python Docutils library to TypeScript", "repository": { "type": "git", "url": "https://github.com/boltex/docutils-ts.git" }, "bugs": { "url": "https://github.com/boltex/docutils-ts/issues" }, "homepage": "https://github.com/boltex/docutils-ts#readme", "type": "module", "module": "./dist/src/index.js", "types": "./dist/src/index.d.ts", "exports": { ".": { "import": "./dist/src/index.js", "types": "./dist/src/index.d.ts" }, "./core": { "import": "./dist/src/core.js", "types": "./dist/src/core.d.ts" }, "./languages": { "import": "./dist/src/languages/index.js", "types": "./dist/src/languages/index.d.ts" } }, "bin": { "rst2html": "./dist/tools/rst2html.js", "rst2xml": "./dist/tools/rst2xml.js" }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "test": "jest", "clearTest": "jest --updateSnapshot", "prepublishOnly": "npm run build", "build": "rm -rf dist && tsc" }, "keywords": [ "docutils", "typescript" ], "author": "Félix Malboeuf", "license": "MIT", "devDependencies": { "@types/jest": "^29.5.14", "@types/sinon": "^7.0.13", "@typescript-eslint/eslint-plugin": "^8.33.0", "@typescript-eslint/parser": "^8.33.0", "eslint": "^9.27.0", "jest": "^29.7.0", "sinon": "^7.3.2", "ts-jest": "^29.3.4", "typescript": "^5.8.3" }, "dependencies": { "@types/argparse": "^1.0.36", "@types/ejs": "^3.1.5", "@types/node": "^22.15.3", "argparse": "^1.0.10", "camelcase": "^5.3.0", "ejs": "^3.1.10" } }