@apostlejs/whatsapp 0.0.0 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +1378 -347
- package/package.json +5 -3
package/package.json
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
"publishConfig": {
|
5
5
|
"access": "public"
|
6
6
|
},
|
7
|
-
"version": "0.0.
|
7
|
+
"version": "0.0.3",
|
8
8
|
"type": "module",
|
9
9
|
"files": [
|
10
10
|
"dist"
|
@@ -25,14 +25,15 @@
|
|
25
25
|
"@types/node": "^22.9.1",
|
26
26
|
"barrelsmith": "0.0.6",
|
27
27
|
"concurrently": "9.1.1",
|
28
|
+
"dotenv": "^16.5.0",
|
28
29
|
"terser": "^5.39.0",
|
29
30
|
"tsup": "8.4.0",
|
30
31
|
"tsx": "^4.19.3",
|
31
32
|
"typescript": "5.8.2",
|
33
|
+
"vitest": "^3.2.4",
|
32
34
|
"@apostlejs/config": "1.0.0"
|
33
35
|
},
|
34
36
|
"dependencies": {
|
35
|
-
"dotenv": "16.4.7",
|
36
37
|
"zod": "3.24.2"
|
37
38
|
},
|
38
39
|
"scripts": {
|
@@ -40,12 +41,13 @@
|
|
40
41
|
"format": "biome format --write",
|
41
42
|
"lint": "biome lint --error-on-warnings",
|
42
43
|
"typecheck": "tsc --noEmit",
|
44
|
+
"test": "vitest --disable-console-intercept",
|
43
45
|
"------------- dev -------------": "-------------",
|
44
46
|
"dev:barrelsmith": "barrelsmith --watch",
|
45
47
|
"dev:watch": "pnpm tsup --env.mode dev",
|
46
48
|
"dev": "concurrently --raw pnpm:dev:*",
|
47
49
|
"------------- build -------------": "-------------",
|
48
|
-
"build": "rm -rf dist
|
50
|
+
"build": "rm -rf dist && barrelsmith && pnpm tsup --env.mode release",
|
49
51
|
"bundlesize": "pnpm build --metafile && npm pack --dry-run",
|
50
52
|
"bundlesize:dev": "pnpm tsup --metafile && npm pack --dry-run",
|
51
53
|
"------------- publishing -------------": "-------------",
|