-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.86 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
{
"name": "@doczilla/node",
"version": "1.2.0",
"description": "Doczilla API wrapper",
"keywords": [
"doczilla",
"puppeteer",
"html2pdf",
"html2image",
"api",
"chrome",
"headless"
],
"homepage": "https://github.com/doczilla-app/doczilla-node",
"bugs": {
"url": "https://github.com/doczilla-app/doczilla-node/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/doczilla-app/doczilla-node.git"
},
"license": "MIT",
"author": {
"name": "Doczilla",
"email": "[email protected]",
"url": "https://doczilla.app"
},
"sideEffects": false,
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "yarn clean && yarn build:ts && yarn build:types",
"build:ts": "tsup src/index.ts --format cjs,esm --clean",
"build:types": "tsc --emitDeclarationOnly --outDir dist/types",
"clean": "rm -rf dist",
"generate:sdk": "node ./generate-models.js && yarn build",
"lint": "eslint --ext .ts .",
"test": "jest"
},
"dependencies": {
"axios": "^1.7.7"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"axios-mock-adapter": "^2.1.0",
"eslint": "9.15.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^29.7.0",
"openapi-typescript-codegen": "^0.29.0",
"ts-jest": "^29.2.5",
"tsup": "^8.3.5",
"typescript": "^5.6"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.*"
}
}