@whop/cli 0.16.1 → 0.16.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whop/cli",
3
- "version": "0.16.1",
3
+ "version": "0.16.2",
4
4
  "description": "The Whop CLI — build and manage Whop apps from your terminal. Human and agent friendly.",
5
5
  "keywords": [
6
6
  "agent",
@@ -45,26 +45,27 @@
45
45
  "@types/node": "25.3.5",
46
46
  "fflate": "0.8.2",
47
47
  "incur": "github:whopio/incur#973bd1a868a8ec8f59d05fc3f85555045b183613",
48
+ "oxfmt": "0.42.0",
48
49
  "tsup": "8.5.0",
49
50
  "tsx": "4.19.4",
50
51
  "typescript": "5.9.3",
51
- "vite": "7.3.6"
52
+ "vite": "^8.0.0"
52
53
  },
53
54
  "engines": {
54
55
  "node": ">=22"
55
56
  },
56
57
  "scripts": {
57
- "build": "tsx scripts/sync-spec.ts && pnpm run clean && tsup",
58
+ "build": "pnpm sync-spec && pnpm run clean && tsup",
58
59
  "build:binary": "tsx scripts/build-binary.ts",
59
60
  "clean": "rm -rf dist",
60
- "dev": "tsx scripts/sync-spec.ts && tsx src/index.ts",
61
+ "dev": "pnpm sync-spec && tsx src/index.ts",
61
62
  "start": "node dist/index.js",
62
- "check-types": "tsx scripts/sync-spec.ts && tsc --noEmit",
63
+ "check-types": "pnpm sync-spec && tsc --noEmit",
63
64
  "lint": "oxlint .",
64
65
  "lint:fix": "oxlint --fix --fix-suggestions && oxfmt",
65
66
  "ci:lint": "oxlint -f github .",
66
67
  "format": "oxfmt",
67
- "sync-spec": "tsx scripts/sync-spec.ts",
68
+ "sync-spec": "tsx scripts/sync-spec.ts && oxfmt src/api/native-spec.json src/api/groups.json src/api/apps-spec.json src/api/files-spec.json src/api/shipped-skills.json",
68
69
  "test": "tsx --test scripts/*.test.ts"
69
70
  }
70
71
  }