-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.03 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
{
"name": "@dytsou/resume-converter",
"version": "2.4.2",
"type": "module",
"packageManager": "pnpm@11.9.0",
"scripts": {
"dev": "vite",
"build": "pnpm run convert && vite build",
"convert": "node scripts/convert-latex.mjs",
"lint": "eslint .",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"preview": "pnpm run build && wrangler dev",
"typecheck": "tsc --noEmit -p tsconfig.app.json",
"release": "pnpm run convert && pnpm run build && pnpm run publish",
"publish:npmjs": "pnpm publish --access public --registry https://registry.npmjs.org",
"prepare": "command -v husky >/dev/null 2>&1 && husky || true",
"deploy": "pnpm run build && wrangler deploy --config wrangler.jsonc --env=\"\""
},
"dependencies": {
"@unified-latex/unified-latex-to-hast": "^1.8.4",
"@unified-latex/unified-latex-util-parse": "^1.8.4",
"hast-util-to-html": "^9.0.5",
"mathjax-full": "^3.2.2",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"rehype-stringify": "^10.0.1",
"unified": "^11.0.5"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.50.0",
"@eslint/js": "^10.0.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@typescript/native": "npm:typescript@^7.0.2",
"@vitejs/plugin-react": "^6.0.5",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.9.0",
"husky": "^9.1.7",
"prettier": "^3.9.6",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"typescript-eslint": "^8.66.0",
"vite": "^8.2.0",
"wrangler": "^4.118.0"
},
"engines": {
"node": ">=24.0.0"
},
"license": "MIT",
"files": [
"dist",
"scripts",
"src",
"index.html",
"vite.config.ts",
"tsconfig.json",
"tsconfig.app.json",
"tsconfig.node.json",
"README.md"
],
"publishConfig": {
"access": "public"
}
}