-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.46 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.46 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
63
64
65
66
{
"name": "@solufy/evolution-sdk",
"version": "1.0.2",
"description": "Unofficial SDK for the Evolution Whatsapp API v2",
"type": "module",
"main": "./lib/src.cjs",
"module": "./lib/src.mjs",
"types": "./lib/src.d.mts",
"exports": {
".": {
"import": {
"types": "./lib/src.d.mts",
"default": "./lib/src.mjs"
},
"require": {
"types": "./lib/src.d.cts",
"default": "./lib/src.cjs"
}
}
},
"files": [
"lib"
],
"packageManager": "pnpm@10.27.0",
"scripts": {
"release": "pnpm build && changeset publish",
"check-types": "tsc --noEmit",
"build": "tsdown ./src",
"lint": "biome check --write .",
"lint:ci": "biome check ."
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"libphonenumber-js": "^1.12.37",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.2",
"@changesets/cli": "^2.29.8",
"@types/node": "^25.2.3",
"tsdown": "^0.20.3",
"typescript": "^5.9.3"
},
"keywords": [
"evolution",
"api",
"whatsapp",
"baileys",
"zap"
],
"author": {
"name": "João Gabriel Tonaco",
"url": "https://github.com/joaotonaco"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solufyapp/evolution-sdk.git"
},
"bugs": {
"url": "https://github.com/solufyapp/evolution-sdk/issues"
},
"homepage": "https://github.com/solufyapp/evolution-sdk#readme",
"license": "MIT"
}