UNPKG

hwpx-ts

Version:

TypeScript library for reading and writing HWPX files

52 lines (51 loc) 1.38 kB
{ "name": "hwpx-ts", "version": "0.1.0", "description": "TypeScript library for reading and writing HWPX files", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.js", "types": "./dist/index.d.ts" } }, "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts", "dev": "tsup src/index.ts --format cjs,esm --dts --watch", "test": "vitest", "lint": "eslint src --ext .ts", "typecheck": "tsc --noEmit" }, "keywords": ["hwpx", "hwp", "hancom", "korean", "document"], "author": "ubermensch1218", "license": "AGPL-3.0", "repository": { "type": "git", "url": "https://github.com/ubermensch1218/hwpx-tools.git", "directory": "packages/hwpx-ts" }, "homepage": "https://github.com/ubermensch1218/hwpx-tools#readme", "bugs": { "url": "https://github.com/ubermensch1218/hwpx-tools/issues" }, "dependencies": { "jszip": "^3.10.1", "fast-xml-parser": "^4.3.2" }, "devDependencies": { "@types/node": "^20.10.0", "tsup": "^8.0.1", "typescript": "^5.3.0", "vitest": "^1.0.0", "eslint": "^8.55.0", "@typescript-eslint/eslint-plugin": "^6.13.0", "@typescript-eslint/parser": "^6.13.0" }, "files": ["dist"], "engines": { "node": ">=18" } }