-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.61 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "doppio-nodejs",
"version": "0.9.0",
"description": "The doppio.sh official library - HTML to PDF - HTML to Screenshot - Templates",
"homepage": "https://doppio.sh",
"bugs": {
"url": "https://github.com/doppio-sh/doppio-nodejs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/doppio-sh/doppio-nodejs.git"
},
"keywords": [
"doppio",
"html to pdf",
"html to screenshot",
"pdf",
"templates",
"screenshot",
"puppeteer",
"headless"
],
"engines": {
"node": ">=17.5"
},
"main": "./dist/cjs/doppio.js",
"module": "./dist/esm/doppio.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"require": {
"default": "./dist/cjs/doppio.js",
"types": "./dist/types/index.d.ts"
},
"import": {
"default": "./dist/esm/doppio.mjs",
"types": "./dist/types/index.d.ts"
}
}
},
"files": [
"./dist"
],
"scripts": {
"prepublishOnly": "npm run clean && rollup -c && tsc -p tsconfig-types.json",
"clean": "rimraf ./dist",
"test": "jest --setupFiles dotenv/config",
"prettier": "prettier --write ."
},
"author": "Renaud Lataguerra",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"prettier": "3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.14.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.4"
}
}