supatester-cli 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.
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "supatester-cli",
3
+ "version": "1.0.4",
4
+ "description": "CLI companion for Supatester",
5
+ "bin": {
6
+ "supatester": "./dist/bin/supatester.js"
7
+ },
8
+ "main": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "engines": {
11
+ "node": ">=18"
12
+ },
13
+ "files": [
14
+ "dist/**/*",
15
+ "README.md",
16
+ "LICENSE",
17
+ "THIRD_PARTY_LICENSES.txt"
18
+ ],
19
+ "scripts": {
20
+ "build": "tsup",
21
+ "build:publish": "node scripts/build-obfuscated.js",
22
+ "dev": "tsup --watch",
23
+ "clean": "rimraf dist",
24
+ "publish:npm": "npm run build:publish && npm publish",
25
+ "publish:npm:dry": "npm run build:publish && npm publish --dry-run",
26
+ "prepublishOnly": "echo Build handled by publish:npm script",
27
+ "publish:offline": "npm run build && npm pack"
28
+ },
29
+ "keywords": [
30
+ "supabase",
31
+ "testing",
32
+ "cli",
33
+ "ci",
34
+ "automated-testing",
35
+ "api-testing"
36
+ ],
37
+ "license": "SEE LICENSE IN LICENSE",
38
+ "dependencies": {
39
+ "@supabase/supabase-js": "^2.98.0",
40
+ "commander": "^14.0.3",
41
+ "uuid": "^13.0.0",
42
+ "zod": "^4.3.6"
43
+ },
44
+ "devDependencies": {
45
+ "@types/node": "^25.3.3",
46
+ "javascript-obfuscator": "^5.3.0",
47
+ "rimraf": "^6.1.3",
48
+ "tsup": "^8.0.1",
49
+ "typescript": "^5.3.3"
50
+ }
51
+ }