-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
44
45
46
{
"name": "handgen",
"version": "1.1.2",
"description": "Handout Generator package that has a Handout class that exposes a createHandout method for generating handout pdfs from jpg, png and/or pdf.\n https://www.npmjs.com/package/handgen",
"main": "./lib/Handout.js",
"scripts": {
"build": "webpack && chmod +x ./bin/index.mjs",
"prepare": "npm run build"
},
"keywords": [
"Handout",
"Handout Generator",
"PDF",
"Notes"
],
"author": "Owen Truong",
"license": "MIT",
"typings": "./lib/**/*.d.ts",
"bin": {
"handgen": "./bin/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OwenTruong/Handout-Generator.git"
},
"bugs": {
"url": "https://github.com/OwenTruong/Handout-Generator/issues"
},
"homepage": "https://github.com/OwenTruong/Handout-Generator#readme",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/preset-typescript": "^7.18.6",
"babel-loader": "^8.2.5",
"babel-plugin-ramda": "^2.1.1",
"typescript": "^4.9.4",
"webpack": "^5.74.0"
},
"dependencies": {
"libreoffice-convert": "^1.4.1",
"pdf-lib": "^1.17.1",
"ts-loader": "^9.4.2",
"webpack-cli": "^4.10.0"
}
}