-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.19 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.19 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
{
"name": "oshea",
"version": "0.13.3",
"description": "A Markdown-to-PDF convertor with an extensible plugin system.",
"main": "cli.js",
"bin": {
"oshea": "cli.js"
},
"files": [
".puppeteerrc.cjs",
"cli.js",
"index.js",
"src/",
"paths/",
"plugins/",
"npm-shrinkwrap.json",
"README.md",
"LICENSE",
"config.example.yaml"
],
"scripts": {
"prepare": "node src/utils/puppeteer-bootstrap.js",
"start": "node cli.js",
"paths": "node paths/generator.js",
"test": "mocha",
"test:all": "npm run test",
"test:last-fails": "node test/analytics/run-last-fails.js",
"test:report": "MOCHA_JSON_REPORT_FILE=./test-report.json mocha",
"test:watch": "node test/analytics/test-watcher.js",
"lint": "biome check --write ."
},
"_moduleAliases": {
"@paths": "paths/index.js"
},
"keywords": [
"claude-skills",
"cli",
"convert",
"cv",
"front-matter",
"markdown",
"pdf",
"plugin",
"puppeteer",
"recipe",
"workflow"
],
"author": "Wyatt Brege/@brege",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/brege/oshea.git"
},
"bugs": {
"url": "https://github.com/brege/oshea/issues"
},
"homepage": "https://github.com/brege/oshea#readme",
"dependencies": {
"@vscode/markdown-it-katex": "^1.1.2",
"ajv": "^8.18.0",
"chai": "^6.2.2",
"chalk": "^5.6.2",
"chokidar": "^5.0.0",
"fs-extra": "^11.3.4",
"glob": "^13.0.6",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.1",
"markdown-it": "^14.1.1",
"markdown-it-anchor": "^9.2.0",
"markdown-it-toc-done-right": "^4.2.0",
"mocha": "^11.7.5",
"module-alias": "^2.3.4",
"puppeteer": "24.40.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"acorn": "^8.16.0",
"acorn-walk": "^8.3.5",
"jsdom": "^29.0.1",
"lodash": "^4.17.23",
"minimatch": "^10.2.4",
"proxyquire": "^2.1.3",
"sinon": "^21.0.3"
},
"overrides": {
"mocha": {
"diff": "8.0.3",
"glob": "11.1.0",
"serialize-javascript": "7.0.4"
},
"undici": "7.24.4"
},
"engines": {
"node": ">=22.0.0"
}
}