visual-ai-assertions 0.3.0 → 0.4.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.
Files changed (1) hide show
  1. package/package.json +17 -32
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "visual-ai-assertions",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "AI-powered visual assertions for E2E tests — send screenshots to Claude, GPT, or Gemini and get structured results",
5
5
  "author": "Risko Ruus",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "git+https://github.com/risko/visual-reasoning.git"
8
+ "url": "git+https://github.com/nullp2ike/visual-reasoning.git"
9
9
  },
10
- "homepage": "https://github.com/risko/visual-reasoning#readme",
10
+ "homepage": "https://github.com/nullp2ike/visual-reasoning#readme",
11
11
  "bugs": {
12
- "url": "https://github.com/risko/visual-reasoning/issues"
12
+ "url": "https://github.com/nullp2ike/visual-reasoning/issues"
13
13
  },
14
14
  "type": "module",
15
15
  "sideEffects": false,
@@ -34,32 +34,12 @@
34
34
  "engines": {
35
35
  "node": ">=18"
36
36
  },
37
- "scripts": {
38
- "build": "tsup",
39
- "test": "vitest run",
40
- "test:watch": "vitest",
41
- "test:ci": "vitest run --coverage",
42
- "test:smoke": "vitest run --config vitest.config.smoke.ts",
43
- "lint": "eslint .",
44
- "format": "prettier --write .",
45
- "format:check": "prettier --check .",
46
- "typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.typecheck.json",
47
- "prepare": "husky"
48
- },
49
37
  "peerDependencies": {
50
- "@anthropic-ai/sdk": ">=0.30.0",
51
- "@google/genai": ">=0.1.0",
52
38
  "zod": "^3.22.0"
53
39
  },
54
- "peerDependenciesMeta": {
55
- "@anthropic-ai/sdk": {
56
- "optional": true
57
- },
58
- "@google/genai": {
59
- "optional": true
60
- }
61
- },
62
40
  "dependencies": {
41
+ "@anthropic-ai/sdk": ">=0.30.0",
42
+ "@google/genai": ">=0.1.0",
63
43
  "openai": ">=4.60.0",
64
44
  "sharp": "^0.33.0"
65
45
  },
@@ -100,10 +80,15 @@
100
80
  "gemini"
101
81
  ],
102
82
  "license": "MIT",
103
- "pnpm": {
104
- "onlyBuiltDependencies": [
105
- "esbuild",
106
- "sharp"
107
- ]
83
+ "scripts": {
84
+ "build": "tsup",
85
+ "test": "vitest run",
86
+ "test:watch": "vitest",
87
+ "test:ci": "vitest run --coverage",
88
+ "test:smoke": "vitest run --config vitest.config.smoke.ts",
89
+ "lint": "eslint .",
90
+ "format": "prettier --write .",
91
+ "format:check": "prettier --check .",
92
+ "typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.typecheck.json"
108
93
  }
109
- }
94
+ }