-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
94 lines (94 loc) · 2.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
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
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "gotenberg-js-client",
"version": "0.7.4",
"description": "A simple JS/TS for interacting with a Gotenberg API",
"author": "Victor Didenko <[email protected]> (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": "4293 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"
}
}