json-theme-even-fork/package.json

67 lines
1.6 KiB
JSON

{
"name": "jsonresume-theme-even",
"version": "0.20.0",
"description": "A flat theme for JSON Resume, compatible with the bleeding edge resume schema",
"keywords": [
"resume",
"json",
"theme",
"flat",
"curriculum-vitae",
"cv"
],
"homepage": "https://jsonresume-theme-even.rbrd.in/",
"bugs": {
"url": "https://github.com/rbardini/jsonresume-theme-even/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rbardini/jsonresume-theme-even"
},
"license": "MIT",
"author": "Rafael Bardini",
"type": "module",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"main": "./dist/index.cjs",
"unpkg": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"source": "index.js",
"bin": {
"jsonresume-theme-even": "bin/cli.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "vite build",
"prebuild:demo": "npm run build",
"build:demo": "mkdir -p public && ./bin/cli.js < node_modules/resume-schema/sample.resume.json > public/index.html",
"format": "prettier .",
"lint": "eslint --ignore-path .gitignore .",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"test": "vitest"
},
"dependencies": {
"feather-icons": "^4.28.0",
"micromark": "^2.11.0",
"striptags": "^3.2.0"
},
"devDependencies": {
"@vitest/coverage-v8": "0.34.3",
"eslint": "8.48.0",
"html-validate": "8.3.0",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"prettier": "3.0.2",
"prettier-plugin-packagejson": "2.4.5",
"resume-schema": "1.0.0",
"vite": "4.4.9",
"vitest": "0.34.3"
}
}