-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
73 lines (73 loc) · 1.83 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
72
73
{
"name": "@resumejs/template-nova",
"version": "0.9.5",
"description": "Default template of resume",
"author": "dengqing <[email protected]>",
"license": "MIT",
"homepage": "https://resume.todev.cc",
"repository": {
"type": "git",
"url": "git+https://github.com/Dunqing/resume.git"
},
"bugs": {
"url": "https://github.com/Dunqing/resume/issues"
},
"keywords": [
"resume",
"components",
"template"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite build --watch",
"build": "vite build --emptyOutDir",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"react": "^17.0.2 || ^18.0.0",
"react-dom": "^17.0.2 || ^18.0.0"
},
"dependencies": {
"@iconify-json/carbon": "^1.1.19",
"@resumejs/template": "workspace:*",
"@types/hast": "^3.0.0",
"@unocss/preset-icons": "^0.55.0",
"@unocss/preset-wind": "^0.55.0",
"@unocss/reset": "^0.55.0",
"clsx": "^2.0.0",
"hast-util-has-property": "^3.0.0",
"omit.js": "^2.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"rehype-raw": "^6.1.1",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"unified": "^10.1.2",
"unist-builder": "^4.0.0",
"unist-util-is": "^6.0.0",
"unist-util-visit": "^5.0.0",
"unocss": "^0.55.0",
"vite-plugin-dts": "^3.5.1",
"yaml": "^2.3.1"
},
"devDependencies": {
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"vite": "^4.4.9",
"vite-plugin-import-css": "^0.1.5"
},
"publishConfig": {
"access": "public"
}
}