forked from rbardini/jsonresume-theme-even
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.41 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.41 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "jsonresume-theme-microdata",
"version": "0.0.0",
"description": "A flat JSON Resume theme, infused with microdata using the schema.org vocabulary",
"keywords": [
"resume",
"json",
"theme",
"flat",
"curriculum-vitae",
"cv",
"microdata",
"schema.org"
],
"homepage": "https://github.com/scottnath/jsonresume-theme-microdata",
"bugs": {
"url": "https://github.com/scottnath/jsonresume-theme-microdata/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scottnath/jsonresume-theme-microdata.git"
},
"license": "MIT",
"author": {
"name": "scottnath"
},
"type": "module",
"exports": {
".": "./dist/index.js",
"./*": "./dist/*",
"./componentsrc": "./components/index.js",
"./componentsrc/**/*": "./components/**/*"
},
"main": "./dist/index.cjs",
"unpkg": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"source": "index.js",
"typings": "./dist/index.d.ts",
"bin": "bin/cli.js",
"files": [
"bin",
"dist",
"components"
],
"scripts": {
"build": "vite build",
"postbuild": "npm run components",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=chpt_0f59236527eec54",
"components": "vite build -c vite.components.config.js --emptyOutDir false",
"dev": "vite",
"format": "prettier .",
"lint": "eslint --ignore-pattern .gitignore ./components",
"prepare": "husky && json2ts ./schema.json schema.d.ts",
"prepublishOnly": "npm run build",
"prerelease": "npm run build",
"release": "semantic-release --debug=true",
"storybook": "storybook dev -p 6006",
"test": "vitest",
"test-storybook": "test-storybook --coverage --coverageDirectory .storybook && nyc report --reporter=text -t coverage/storybook --report-dir .storybook",
"type-check": "tsc"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"dependencies": {
"feather-icons": "^4.29.2",
"marked": "^12.0.2",
"striptags": "^3.2.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.5.0",
"@codemirror/commands": "6.5.0",
"@codemirror/lang-json": "6.0.1",
"@codemirror/theme-one-dark": "6.1.2",
"@codemirror/view": "6.26.3",
"@cucumber/microdata": "^2.1.0",
"@storybook/addon-coverage": "^1.0.4",
"@storybook/addon-essentials": "^8.1.5",
"@storybook/addon-interactions": "^8.1.5",
"@storybook/addon-links": "^8.1.5",
"@storybook/blocks": "^8.1.5",
"@storybook/test": "^8.1.5",
"@storybook/test-runner": "^0.18.2",
"@storybook/web-components": "^8.1.5",
"@storybook/web-components-vite": "^8.1.5",
"@types/feather-icons": "4.29.4",
"@vitest/coverage-v8": "1.6.0",
"chromatic": "^11.5.0",
"codemirror": "6.0.1",
"debounce": "2.1.0",
"eslint": "9.4.0",
"eslint-plugin-storybook": "^0.8.0",
"html-validate": "8.19.1",
"husky": "9.0.11",
"json-schema-to-typescript": "14.0.5",
"lint-staged": "15.2.5",
"lit": "^3.1.3",
"prettier": "3.3.0",
"prettier-plugin-organize-imports": "3.2.4",
"prettier-plugin-packagejson": "2.5.0",
"resume-schema": "1.0.0",
"storybook": "^8.1.5",
"storybook-addon-render-modes": "^0.0.11",
"storydocker-utilities": "^0.0.21",
"typescript": "5.4.5",
"vite": "5.2.12",
"vite-plugin-dts": "3.9.1",
"vite-plugin-static-copy": "^1.0.5",
"vitest": "1.6.0"
}
}