-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "math-sheets",
"version": "0.6.0",
"private": true,
"description": "Generate PDF worksheets of simple math problems in the browser.",
"scripts": {
"prepare": "husky",
"postinstall": "npm run fonts",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"fonts": "node scripts/generateFontCSS.js",
"pretty:check": "prettier . --check",
"pretty:fix": "prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sphars/math-sheets.git"
},
"author": "Spencer Harston",
"license": "MIT",
"bugs": {
"url": "https://github.com/sphars/math-sheets/issues"
},
"homepage": "https://github.com/sphars/math-sheets#readme",
"dependencies": {
"html2canvas": "^1.4.1",
"jspdf": "^2.5.1",
"jspdf-autotable": "github:simonbengtsson/jsPDF-AutoTable#v4"
},
"devDependencies": {
"@fontsource-variable/roboto-flex": "^5.0.15",
"@types/node": "^20.14.10",
"98.css": "^0.1.20",
"husky": "^9.0.11",
"prettier": "3.3.3",
"semver": "^7.6.2",
"typescript": "^5.5.3",
"vite": "^5.3.3"
}
}