-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 968 Bytes
/
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
{
"name": "resume",
"version": "1.0.0",
"description": "Justin Schrader's resume",
"main": "index.html",
"private": true,
"scripts": {
"actions:release:dryrun": "sh ./scripts/release-action-dryrun.sh",
"build": "mkdir -p dist && npm run html && npm run pdf",
"html": "html-minifier src/index.html -o dist/index.html --collapse-whitespace --remove-comments --remove-optional-tags --remove-redundant-attributes --remove-script-type-attributes --remove-tag-whitespace --use-short-doctype --minify-css true",
"pdf": "npx ts-node generatePDF.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/icd2k3/resume.git"
},
"author": "Justin Schrader",
"bugs": {
"url": "https://github.com/icd2k3/resume/issues"
},
"homepage": "https://justin-schrader.com/resume",
"devDependencies": {
"@types/node": "^20.11.24",
"html-minifier": "^4.0.0",
"puppeteer": "^22.3.0",
"ts-node": "^10.9.2"
}
}