@vercel/slack-bolt 1.0.2 → 1.0.4

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.
Files changed (1) hide show
  1. package/package.json +13 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/slack-bolt",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "A Vercel receiver for building Slack apps with Bolt and deploying them to Vercel",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -34,16 +34,17 @@
34
34
  "license": "MIT",
35
35
  "dependencies": {
36
36
  "@slack/logger": "^4.0.0",
37
- "@vercel/functions": "^3.1.0"
37
+ "@vercel/functions": "^3.3.5"
38
38
  },
39
39
  "devDependencies": {
40
+ "@arethetypeswrong/cli": "^0.18.2",
40
41
  "@biomejs/biome": "2.2.2",
41
- "@changesets/cli": "^2.29.7",
42
- "@types/node": "^24.4.0",
42
+ "@changesets/cli": "^2.29.8",
43
+ "@types/node": "^20.19.27",
43
44
  "husky": "^9.1.7",
44
- "tsup": "^8.5.0",
45
- "typescript": "^5.9.2",
46
- "vitest": "^3.2.4"
45
+ "tsup": "^8.5.1",
46
+ "typescript": "^5.9.3",
47
+ "vitest": "^4.0.16"
47
48
  },
48
49
  "peerDependencies": {
49
50
  "@slack/bolt": "^4.4.0"
@@ -53,6 +54,9 @@
53
54
  "optional": false
54
55
  }
55
56
  },
57
+ "engines": {
58
+ "node": ">=20.0.0"
59
+ },
56
60
  "publishConfig": {
57
61
  "access": "public"
58
62
  },
@@ -65,6 +69,7 @@
65
69
  "changeset": "changeset",
66
70
  "release": "pnpm build && changeset publish",
67
71
  "lint": "biome check .",
68
- "lint:fix": "biome check . --write"
72
+ "lint:fix": "biome check . --write",
73
+ "attw": "attw --pack ."
69
74
  }
70
75
  }