-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
42
43
{
"name": "susco",
"version": "0.3.0",
"description": "Automatically generate a PDF from source code",
"main": "dist/main.js",
"files": [
"dist"
],
"keywords": [
"pdf",
"copyright"
],
"repository": "https://github.com/modiimedia/susco",
"scripts": {
"prepare": "npm run build",
"build": "npm run copyPrism && npm run cleanDist && tsc && npm run copyAssets",
"cleanDist": "ts-node scripts/cleanDir --project tsconfig.build.json",
"copyAssets": "ts-node scripts/copyAssets --project tsconfig.build.json",
"copyPrism": "ts-node scripts/copyPrism --project tsconfig.build.json"
},
"author": "Joshua Sosso (joshmossas)",
"license": "MIT",
"dependencies": {
"cli-progress": "^3.11.2",
"date-fns": "^2.29.3",
"fast-glob": "^3.2.12",
"fs-extra": "^10.1.0",
"get-installed-path": "^4.0.8",
"istextorbinary": "^6.0.0",
"pdf-merger-js": "^4.1.2",
"prismjs": "^1.29.0",
"wkhtmltopdf": "^0.4.0"
},
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/fs-extra": "^9.0.13",
"@types/get-installed-path": "^4.0.1",
"@types/prismjs": "^1.26.0",
"@types/wkhtmltopdf": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}