-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.89 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
{
"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": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/types/index.d.ts"
},
"./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.5"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@swc/core": "^1.7.14",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"axios-mock-adapter": "^1.22.0",
"eslint": "9.8.0",
"eslint-plugin-import": "2.29.1",
"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.2.4",
"typescript": "^5.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.*"
}
}