json-theme-even-fork/package.json

80 lines
2.0 KiB
JSON
Raw Normal View History

2018-09-23 20:28:05 +02:00
{
"name": "jsonresume-theme-even",
2023-09-28 03:16:00 +02:00
"version": "0.22.0",
"description": "A flat JSON Resume theme, compatible with the latest resume schema",
2021-11-05 19:04:08 +01:00
"keywords": [
"resume",
"json",
"theme",
"flat",
"curriculum-vitae",
"cv"
],
2022-03-30 15:51:20 +02:00
"homepage": "https://jsonresume-theme-even.rbrd.in/",
"bugs": {
"url": "https://github.com/rbardini/jsonresume-theme-even/issues"
},
2018-09-23 20:28:05 +02:00
"repository": {
"type": "git",
"url": "https://github.com/rbardini/jsonresume-theme-even"
},
"license": "MIT",
"author": "Rafael Bardini",
"type": "module",
"exports": {
"require": "./dist/index.cjs",
2023-01-31 02:37:41 +01:00
"default": "./dist/index.js"
},
"main": "./dist/index.cjs",
2023-01-31 02:37:41 +01:00
"unpkg": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"source": "index.js",
"typings": "./dist/index.d.ts",
2021-03-06 14:53:58 +01:00
"bin": {
"jsonresume-theme-even": "bin/cli.js"
},
"files": [
2021-03-06 14:46:55 +01:00
"bin",
"dist"
],
"scripts": {
2023-01-31 02:37:41 +01:00
"build": "vite build",
"dev": "vite",
2023-07-22 02:35:49 +02:00
"format": "prettier .",
2023-01-31 02:37:41 +01:00
"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"
},
2018-09-23 20:28:05 +02:00
"dependencies": {
"feather-icons": "^4.28.0",
2021-03-03 19:50:15 +01:00
"micromark": "^2.11.0",
2021-06-19 22:31:31 +02:00
"striptags": "^3.2.0"
},
"devDependencies": {
2023-10-08 01:34:06 +02:00
"@codemirror/commands": "6.3.0",
"@codemirror/lang-json": "6.0.1",
"@codemirror/theme-one-dark": "6.1.2",
2023-10-08 01:34:06 +02:00
"@codemirror/view": "6.21.3",
"@types/feather-icons": "4.29.2",
2023-10-08 01:34:06 +02:00
"@vitest/coverage-v8": "0.34.6",
"codemirror": "6.0.1",
"debounce": "1.2.1",
2023-10-08 01:34:06 +02:00
"eslint": "8.51.0",
"html-validate": "8.5.0",
2023-01-09 00:53:49 +01:00
"husky": "8.0.3",
"json-schema-to-typescript": "13.1.1",
2023-08-29 02:54:54 +02:00
"lint-staged": "14.0.1",
2023-09-28 03:14:17 +02:00
"prettier": "3.0.3",
"prettier-plugin-organize-imports": "3.2.3",
"prettier-plugin-packagejson": "2.4.6",
2020-12-13 13:53:20 +01:00
"resume-schema": "1.0.0",
"typescript": "5.2.2",
2023-10-08 01:34:06 +02:00
"vite": "4.4.11",
2023-09-28 03:14:17 +02:00
"vite-plugin-dts": "3.6.0",
"vite-plugin-static-copy": "0.17.0",
2023-10-08 01:34:06 +02:00
"vitest": "0.34.6"
2018-09-23 20:28:05 +02:00
}
}