resuml 1.2.6 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "resuml",
3
- "version": "1.2.6",
4
- "description": "Generate JSON resumes from YAML with theme support",
3
+ "version": "1.3.0",
4
+ "description": "Resume as Code — Generate beautiful resumes from YAML with JSON Resume theme support, validation, PDF export, and a live dev server.",
5
5
  "main": "./dist/api.js",
6
6
  "exports": {
7
7
  ".": {
@@ -32,13 +32,13 @@
32
32
  "prepare": "husky"
33
33
  },
34
34
  "dependencies": {
35
- "@jsonresume/schema": "^1.0.0",
36
- "ajv": "^8.12.0",
37
- "chalk": "^5.3.0",
35
+ "@jsonresume/schema": "^1.2.1",
36
+ "ajv": "^8.18.0",
37
+ "chalk": "^5.6.2",
38
38
  "commander": "^11.1.0",
39
- "js-yaml": "^4.1.0",
39
+ "js-yaml": "^4.1.1",
40
40
  "lodash.merge": "^4.6.2",
41
- "yaml": "^2.3.4"
41
+ "yaml": "^2.8.2"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@commitlint/cli": "^19.8.1",
@@ -46,31 +46,55 @@
46
46
  "@semantic-release/changelog": "^6.0.3",
47
47
  "@semantic-release/commit-analyzer": "^13.0.1",
48
48
  "@semantic-release/git": "^10.0.1",
49
- "@semantic-release/github": "^11.0.3",
50
- "@semantic-release/npm": "^12.0.1",
51
- "@semantic-release/release-notes-generator": "^14.0.3",
49
+ "@semantic-release/github": "^11.0.6",
50
+ "@semantic-release/npm": "^13.1.4",
51
+ "@semantic-release/release-notes-generator": "^14.1.0",
52
52
  "@types/js-yaml": "^4.0.9",
53
53
  "@types/lodash.merge": "^4.6.9",
54
- "@types/node": "^20.11.19",
55
- "@typescript-eslint/eslint-plugin": "^8.33.0",
56
- "@typescript-eslint/parser": "^8.33.0",
57
- "eslint": "^8.0.0",
58
- "eslint-config-prettier": "^9.0.0",
54
+ "@types/node": "^20.19.33",
55
+ "@typescript-eslint/eslint-plugin": "^8.55.0",
56
+ "@typescript-eslint/parser": "^8.55.0",
57
+ "eslint": "^8.57.1",
58
+ "eslint-config-prettier": "^9.1.2",
59
59
  "husky": "^9.1.7",
60
60
  "json-schema-to-typescript": "^15.0.4",
61
- "prettier": "^3.0.0",
62
- "semantic-release": "^24.2.5",
63
- "tsup": "^8.0.2",
64
- "typescript": "^5.0.0",
65
- "vitest": "^3.2.2"
61
+ "prettier": "^3.8.1",
62
+ "semantic-release": "^25.0.3",
63
+ "tsup": "^8.5.1",
64
+ "typescript": "^5.9.3",
65
+ "vitest": "^3.2.4"
66
+ },
67
+ "peerDependencies": {
68
+ "puppeteer": ">=20.0.0"
69
+ },
70
+ "peerDependenciesMeta": {
71
+ "puppeteer": {
72
+ "optional": true
73
+ }
66
74
  },
67
75
  "engines": {
68
76
  "node": ">=20.0.0"
69
77
  },
78
+ "homepage": "https://phoinixi.github.io/resuml/",
79
+ "repository": {
80
+ "type": "git",
81
+ "url": "https://github.com/phoinixi/resuml.git"
82
+ },
70
83
  "license": "ISC",
71
84
  "author": "phoinixi",
72
85
  "publishConfig": {
73
86
  "access": "public",
74
87
  "registry": "https://registry.npmjs.org/"
75
- }
88
+ },
89
+ "keywords": [
90
+ "resume",
91
+ "yaml",
92
+ "cli",
93
+ "json-resume",
94
+ "pdf",
95
+ "resume-builder",
96
+ "resume-generator",
97
+ "cv",
98
+ "career"
99
+ ]
76
100
  }