95 lines
2.3 KiB
JSON
95 lines
2.3 KiB
JSON
{
|
|
"name": "gotenberg-js-client",
|
|
"version": "0.7.0",
|
|
"description": "A simple JS/TS for interacting with a Gotenberg API",
|
|
"author": "Victor Didenko <yumaa.verdin@gmail.com> (https://yumaa.name)",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"gotenberg",
|
|
"pdf",
|
|
"puppeteer",
|
|
"unoconv"
|
|
],
|
|
"scripts": {
|
|
"dev": "ts-node src/index.ts",
|
|
"test": "jest",
|
|
"build": "rm -rf pkg/ && pika build",
|
|
"format": "prettier --write \"src/**/*.ts\" --write \"test/**/*.ts\"",
|
|
"lint": "tslint -p tsconfig.json && yarn spell",
|
|
"spell": "yaspeller .",
|
|
"release": "pika publish",
|
|
"version": "yarn build",
|
|
"size": "size-limit"
|
|
},
|
|
"size-limit": [
|
|
{
|
|
"path": "pkg/dist-node/index.js",
|
|
"webpack": false,
|
|
"limit": "4229 B"
|
|
}
|
|
],
|
|
"@pika/pack": {
|
|
"pipeline": [
|
|
[
|
|
"@pika/plugin-ts-standard-pkg"
|
|
],
|
|
[
|
|
"pika-plugin-typedefs-to-flow"
|
|
],
|
|
[
|
|
"@pika/plugin-build-node",
|
|
{
|
|
"minNodeVersion": "10"
|
|
}
|
|
],
|
|
[
|
|
"pika-plugin-package.json",
|
|
{
|
|
"+author": "^",
|
|
"*files": [
|
|
"-bin/"
|
|
],
|
|
"-devDependencies": {}
|
|
}
|
|
]
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/yumauri/gotenberg-js-client"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/yumauri/gotenberg-js-client/issues"
|
|
},
|
|
"homepage": "https://github.com/yumauri/gotenberg-js-client#readme",
|
|
"dependencies": {
|
|
"form-data": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@pika/pack": "^0.5.0",
|
|
"@pika/plugin-build-node": "^0.9.2",
|
|
"@pika/plugin-ts-standard-pkg": "^0.9.2",
|
|
"@size-limit/preset-small-lib": "^4.11.0",
|
|
"@types/jest": "^26.0.23",
|
|
"@types/node": "^15.6.1",
|
|
"flowgen": "^1.14.1",
|
|
"jest": "^27.0.1",
|
|
"nock": "^13.0.11",
|
|
"pika-plugin-package.json": "^1.0.2",
|
|
"pika-plugin-typedefs-to-flow": "^0.0.3",
|
|
"prettier": "^2.3.0",
|
|
"size-limit": "^4.11.0",
|
|
"ts-jest": "^27.0.1",
|
|
"ts-node": "^10.0.0",
|
|
"tslint": "^6.1.3",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"tslint-config-security": "^1.16.0",
|
|
"tslint-config-standard-plus": "^2.3.0",
|
|
"typescript": "^4.3.2",
|
|
"yaspeller": "^7.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=12.0.0"
|
|
}
|
|
}
|