-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 847 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "paged-html",
"version": "1.1.4",
"description": "A library to render paged HTML which is print ready to any paper format",
"main": "build/index.js",
"scripts": {
"prepare": "npm run build",
"start": "cross-env NODE_ENV=development esbuild demo/public/index.js --bundle --watch --format=esm --sourcemap=inline --outfile=demo/dist/paged-html.js --servedir=demo",
"types": "npx tsc",
"build": "npm run types && cross-env NODE_ENV=production esbuild src/index.js --bundle --format=esm --minify --sourcemap --outfile=build/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/1995navinkumar/paged-html.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"cross-env": "^7.0.3",
"esbuild": "0.17.18"
}
}