forked from piersdeseilligny/betterfountain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.88 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.88 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
{
"name": "fountainpub",
"version": "1.0.6",
"description": "Generate PDF and HTML from Fountain screenplays with configurable settings via .fountainpubrc",
"main": "./out/cli.js",
"bin": {
"fountainpub": "./out/cli.js"
},
"files": [
"out/",
"src/assets/",
"src/courierprime/",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -p ./ --watch",
"test": "node node_modules/jest/bin/jest.js",
"prepublishOnly": "npm run build",
"postbuild": "cp -R src/courierprime out/ && mkdir -p out/assets && cp src/assets/StaticExports.html out/assets/StaticExports.html"
},
"keywords": [
"screenwriting",
"fountain",
"screenplay",
"pdf",
"html",
"cli",
"configuration"
],
"author": "Alex Torma",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alextorma/fountainpub"
},
"bugs": {
"url": "https://github.com/alextorma/fountainpub/issues"
},
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@types/base64-stream": "^1.0.2",
"@types/diff": "^4.0.2",
"@types/he": "^1.1.2",
"@types/jest": "^24.9.1",
"@types/mocha": "^5.2.7",
"@types/node": "^18.0.0",
"@types/pdf-parse": "^1.1.5",
"@types/rc": "^1.2.0",
"@types/username": "^3.0.0",
"copyfiles": "^2.4.1",
"imports-loader": "^1.2.0",
"jest": "^24.9.0",
"pdf-parse": "^1.1.1",
"pdf-text-extract": "^1.5.0",
"pdfjs-dist": "^2.16.105",
"ts-jest": "^24.3.0",
"typescript": "^4.9.5",
"webpack": "^5.54.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@types/js-yaml": "^4.0.9",
"base64-stream": "^1.0.0",
"blob": "0.1.0",
"commander": "^9.0.0",
"diff": "^8.0.2",
"font-finder": "^1.1.0",
"he": "^1.2.0",
"js-yaml": "^4.1.0",
"pdfkit": "^0.12.3",
"rc": "^1.2.8",
"readability-scores": "^1.0.8",
"textbox-for-pdfkit": "^0.2.1",
"username": "^5.1.0"
}
}