@apostlejs/whatsapp 0.0.20 → 0.1.0

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.
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) [2025] [Fernando Coelho]
3
+ Copyright (c) 2026 Fernando Coelho
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.0.20",
7
+ "version": "0.1.0",
8
8
  "type": "module",
9
9
  "files": [
10
10
  "dist"
@@ -21,36 +21,26 @@
21
21
  ]
22
22
  }
23
23
  },
24
+ "dependencies": {
25
+ "type-fest": "^5.4.4",
26
+ "@apostlejs/whatsapp-api": "0.1.0"
27
+ },
24
28
  "devDependencies": {
25
29
  "@types/node": "^22.9.1",
26
- "barrelsmith": "0.0.7",
27
- "concurrently": "9.1.1",
28
- "dotenv": "^16.5.0",
29
- "terser": "^5.39.0",
30
- "tsup": "8.4.0",
30
+ "@typescript/native-preview": "7.0.0-dev.20260305.1",
31
+ "barrelsmith": "^0.0.10",
32
+ "dotenv": "17.3.1",
33
+ "tsdown": "^0.21.2",
31
34
  "tsx": "^4.19.3",
32
- "typescript": "5.8.2",
33
- "vitest": "^3.2.4",
34
- "@apostlejs/config": "1.0.0"
35
+ "vite-tsconfig-paths": "^6.1.1",
36
+ "vitest": "4.0.18",
37
+ "@apostlejs/config": "0.0.1"
35
38
  },
36
39
  "scripts": {
37
- "------------- toolchain -------------": "-------------",
38
- "format": "biome format --write",
39
- "lint": "biome lint --error-on-warnings",
40
- "checktypes": "tsc --noEmit",
41
- "test": "vitest --disable-console-intercept",
42
- "------------- dev -------------": "-------------",
43
- "dev:barrelsmith": "barrelsmith --watch",
44
- "dev:watch": "pnpm tsup --env.mode dev",
45
- "dev": "concurrently --raw pnpm:dev:*",
46
- "------------- build -------------": "-------------",
47
- "build": "rm -rf dist && barrelsmith && pnpm tsup --env.mode release",
48
- "bundlesize": "pnpm build --metafile && npm pack --dry-run",
49
- "bundlesize:dev": "pnpm tsup --metafile && npm pack --dry-run",
50
- "------------- publishing -------------": "-------------",
51
- "change": "changeset",
52
- "bump": "pnpm changeset version",
53
- "release": "pnpm checktypes && pnpm build && pnpm publish --no-git-checks",
54
- "release:rc": "pnpm checktypes && pnpm build && pnpm version prerelease --preid=rc"
40
+ "checktypes": "tsgo --noEmit",
41
+ "test": "vitest",
42
+ "dev": "tsdown --watch",
43
+ "build": "tsdown",
44
+ "bundlesize": "pnpm build && npm pack --dry-run"
55
45
  }
56
46
  }