forked from rbardini/jsonresume-theme-even
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.67 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "jsonresume-theme-projects",
"version": "0.30.0",
"description": "A flat JSON Resume theme based on jsonresume-theme-projects",
"keywords": [
"resume",
"json",
"theme",
"even",
"curriculum-vitae",
"cv"
],
"homepage": "",
"bugs": {
"url": "https://github.com/dmsemenov/jsonresume-theme-projects/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dmsemenov/jsonresume-theme-projects"
},
"license": "MIT",
"author": "Dmitry Semenov",
"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-projects": "bin/cli.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "vite build",
"dev": "vite",
"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": {
"@codemirror/commands": "6.2.5",
"@codemirror/lang-json": "6.0.1",
"@codemirror/theme-one-dark": "6.1.2",
"@codemirror/view": "6.19.0",
"@vitest/coverage-v8": "0.34.3",
"codemirror": "6.0.1",
"debounce": "1.2.1",
"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"
}
}