json-theme-even-fork/package.json

80 lines
2.0 KiB
JSON

{
"name": "jsonresume-theme-even",
"version": "0.22.0",
"description": "A flat JSON Resume theme, compatible with the latest 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",
"typings": "./dist/index.d.ts",
"bin": {
"jsonresume-theme-even": "bin/cli.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "vite build",
"dev": "vite",
"format": "prettier .",
"lint": "eslint --ignore-path .gitignore .",
"prepare": "husky install && json2ts node_modules/resume-schema/schema.json schema.d.ts",
"prepublishOnly": "npm run build",
"test": "vitest",
"type-check": "tsc"
},
"dependencies": {
"feather-icons": "^4.28.0",
"micromark": "^2.11.0",
"striptags": "^3.2.0"
},
"devDependencies": {
"@codemirror/commands": "6.3.0",
"@codemirror/lang-json": "6.0.1",
"@codemirror/theme-one-dark": "6.1.2",
"@codemirror/view": "6.21.3",
"@types/feather-icons": "4.29.2",
"@vitest/coverage-v8": "0.34.6",
"codemirror": "6.0.1",
"debounce": "1.2.1",
"eslint": "8.51.0",
"html-validate": "8.5.0",
"husky": "8.0.3",
"json-schema-to-typescript": "13.1.1",
"lint-staged": "14.0.1",
"prettier": "3.0.3",
"prettier-plugin-organize-imports": "3.2.3",
"prettier-plugin-packagejson": "2.4.6",
"resume-schema": "1.0.0",
"typescript": "5.2.2",
"vite": "4.4.11",
"vite-plugin-dts": "3.6.0",
"vite-plugin-static-copy": "0.17.0",
"vitest": "0.34.6"
}
}