UNPKG

@yamlresume/core

Version:

The typesetting and layout core for YAMLResume

73 lines 1.6 kB
{ "name": "@yamlresume/core", "version": "0.12.2", "description": "The typesetting and layout core for YAMLResume", "license": "MIT", "author": { "name": "YAMLResume", "email": "support@yamlresume.com", "url": "https://yamlresume.dev" }, "keywords": [ "YAMLResume", "CV", "Resume", "LaTeX", "Typesetting", "PDF", "YAML", "JSON" ], "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } }, "files": [ "dist", "README.md", "LICENSE" ], "dependencies": { "escape-latex": "^1.2.0", "js-beautify": "^1.15.4", "lodash-es": "^4.17.23", "remark-parse": "^11.0.0", "tslib": "^2.8.1", "unified": "^11.0.5", "zod": "^4.3.6" }, "devDependencies": { "@types/mdast": "^4.0.4", "yaml": "^2.8.2" }, "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "https://github.com/yamlresume/yamlresume.git", "directory": "packages/core" }, "bugs": { "url": "https://github.com/yamlresume/yamlresume/issues" }, "homepage": "https://yamlresume.dev/", "engines": { "node": ">=20.0.0" }, "scripts": { "build": "tsup", "build:watch": "tsup --watch", "build:clean": "rm -rf dist", "build:prod": "tsup --dts --minify --sourcemap --tsconfig tsconfig.prod.json", "test": "vitest --run", "test:cov": "vitest --coverage --run", "test:watch": "vitest", "typedoc": "typedoc" } }