-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.74 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.74 KB
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
{
"name": "waha-api-client-ts",
"version": "1.0.2",
"type": "module",
"description": "Waha Api Client TS for https://github.com/devlikeapro/waha (unofficial)",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.min.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"browser": "./dist/index.umd.min.js",
"types": "./dist/index.d.ts"
}
},
"unpkg": "dist/index.umd.min.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"build:browser": "rollup -c --environment TARGET:browser",
"build:watch": "rollup -c --watch",
"test": "tsx example/index.ts",
"prepare": "npm run build",
"docs": "typedoc src/index.ts --out docs --excludePrivate --excludeInternal",
"clean": "rm -rf dist",
"generate:types": "npx sta generate -p waha-openapi.json -o src/generated -n waha-schema.ts --no-client --type-suffix=Schema",
"prebuild": "npm run generate:types"
},
"keywords": [
"waha",
"api",
"client",
"whatsapp",
"typescript"
],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/myusp/waha-api-client-ts.git"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.8",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@types/node": "^24.7.2",
"openapi-typescript": "^7.10.1",
"rollup": "^4.52.4",
"rollup-plugin-dts": "^6.2.3",
"swagger-typescript-api": "^13.2.15",
"terser": "^5.44.0",
"tslib": "^2.8.1",
"tsx": "^4.20.6",
"typedoc": "^0.28.14",
"typescript": "^5.9.3"
}
}