ripplo 0.6.1 → 0.7.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.
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "ripplo",
3
- "version": "0.6.1",
3
+ "version": "0.7.0",
4
4
  "description": "CLI for Ripplo — AI-powered end-to-end testing",
5
5
  "type": "module",
6
6
  "homepage": "https://ripplo.ai",
7
+ "license": "SEE LICENSE IN LICENSE.md",
7
8
  "keywords": [
8
9
  "testing",
9
10
  "e2e",
@@ -17,42 +18,46 @@
17
18
  "ripplo": "./dist/index.js"
18
19
  },
19
20
  "dependencies": {
21
+ "@anthropic-ai/claude-agent-sdk": "^0.2.119",
20
22
  "@inquirer/prompts": "^7.5.3",
21
23
  "better-auth": "^1.5.6",
22
24
  "dotenv": "^17.3.1",
23
- "figures": "^6.1.0",
25
+ "fuse.js": "^7.4.2",
24
26
  "gql.tada": "^1.9.0",
25
27
  "graphql": "^16.11.0",
26
28
  "graphql-sse": "^2.6.0",
27
29
  "jiti": "^2.6.1",
28
- "p-limit": "^7.3.0",
30
+ "neverthrow": "^8.2.0",
31
+ "p-queue": "^9.3.0",
29
32
  "p-retry": "^8.0.0",
30
33
  "picomatch": "^4.0.3",
31
34
  "pino": "^9.14.0",
32
35
  "pino-pretty": "^13.1.3",
33
36
  "playwright": "1.59.1",
37
+ "proper-lockfile": "^4.1.2",
34
38
  "remeda": "^2.33.7",
35
- "rrweb": "2.0.0-alpha.20",
36
39
  "shell-quote": "1.8.3",
37
- "standardwebhooks": "^1.0.0",
38
40
  "typescript": "^5.9.3",
39
41
  "undici": "^7.0.0",
42
+ "vscode-jsonrpc": "^9.0.0",
40
43
  "yargs": "^18.0.0",
41
- "zod": "^4.3.6"
44
+ "zod": "4.3.6"
42
45
  },
43
46
  "devDependencies": {
44
- "@anthropic-ai/claude-agent-sdk": "^0.2.119",
45
47
  "@types/node": "catalog:",
46
48
  "@types/picomatch": "^4.0.2",
49
+ "@types/proper-lockfile": "^4.1.4",
47
50
  "@types/shell-quote": "^1.7.5",
48
51
  "@types/yargs": "^17.0.35",
49
52
  "eslint": "catalog:",
53
+ "eslint-plugin-neverthrow": "^1.1.4",
50
54
  "tsup": "^8.5.1",
51
- "@ripplo/eslint-config": "0.0.0",
55
+ "vitest": "^4.1.4",
56
+ "@ripplo/core": "^0.0.0",
52
57
  "@ripplo/runtime": "^0.0.0",
53
- "@ripplo/testing": "^0.6.1",
58
+ "@ripplo/graphql": "^0.0.0",
54
59
  "@ripplo/spec": "^0.0.0",
55
- "@ripplo/graphql": "^0.0.0"
60
+ "@ripplo/eslint-config": "0.0.0"
56
61
  },
57
62
  "scripts": {
58
63
  "dev": "tsx watch src/index.ts",
@@ -61,6 +66,7 @@
61
66
  "lint": "eslint src",
62
67
  "gql:check": "gql-tada check",
63
68
  "gql:generate": "gql-tada generate output",
64
- "pack": "tsup && pnpm pack"
69
+ "pack": "tsup && pnpm pack",
70
+ "test": "vitest run"
65
71
  }
66
72
  }