-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.22 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
{
"name": "resumy",
"version": "0.1.0",
"description": "Bun-first CLI for generating polished resume PDFs from structured flags and built-in templates.",
"license": "MCP",
"homepage": "https://github.com/ahpxex/resume-cli#readme",
"bugs": {
"url": "https://github.com/ahpxex/resume-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahpxex/resume-cli.git"
},
"keywords": [
"resume",
"cv",
"cli",
"pdf",
"bun",
"typescript",
"template"
],
"main": "./dist/npm/index.js",
"type": "module",
"files": [
"dist/npm",
"README.md",
"README.zh-CN.md"
],
"bin": {
"resumy": "dist/npm/index.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "bun run index.ts",
"dev": "bun run --watch index.ts",
"build": "bun build ./index.ts --target=node --format=esm --packages=external --outfile ./dist/npm/index.js",
"check": "tsc --noEmit",
"test": "bun test",
"prepack": "bun run build",
"prepublishOnly": "bun run check && bun test"
},
"dependencies": {
"cac": "^7.0.0",
"playwright": "^1.58.2"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.9.2"
}
}