-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 5.3 KB
/
package.json
File metadata and controls
144 lines (144 loc) · 5.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "@vizzly-testing/cli",
"version": "0.35.0",
"description": "Visual regression testing from your terminal",
"keywords": [
"llm-context",
"visual-context",
"approved-baselines",
"visual-testing",
"screenshot-testing",
"visual-review",
"ui-testing",
"collaboration",
"testing",
"cli"
],
"homepage": "https://vizzly.dev",
"bugs": "https://github.com/vizzly-testing/cli/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/vizzly-testing/cli.git"
},
"license": "MIT",
"author": "Stubborn Mule Software <support@vizzly.dev>",
"type": "module",
"packageManager": "pnpm@11.3.0",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./client": {
"types": "./dist/types/client.d.ts",
"import": "./dist/client/index.js",
"require": "./dist/client/index.js"
},
"./sdk": {
"types": "./dist/types/sdk.d.ts",
"import": "./dist/sdk/index.js",
"require": "./dist/sdk/index.js"
},
"./config": {
"types": "./dist/types/config.d.ts",
"import": "./dist/utils/config-helpers.js",
"require": "./dist/utils/config-helpers.js"
}
},
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"bin": {
"vizzly": "bin/vizzly.js"
},
"files": [
"bin",
"dist",
"docs/assets",
"skills",
"README.md",
"LICENSE"
],
"scripts": {
"cli": "source .envrc && node bin/vizzly.js",
"start": "node src/index.js",
"build": "pnpm run clean && pnpm run compile && pnpm run build:reporter && pnpm run build:reporter-ssr && pnpm run copy-types",
"clean": "rimraf dist",
"compile": "babel src --out-dir dist --ignore '**/*.test.js'",
"copy-types": "mkdir -p dist/types && cp src/types/*.d.ts dist/types/",
"build:reporter": "cd src/reporter && vite build",
"build:reporter-ssr": "cd src/reporter && vite build --config vite.ssr.config.js",
"dev:reporter": "cd src/reporter && vite --config vite.dev.config.js",
"test:types": "tsd",
"prepublishOnly": "pnpm run build",
"test": "node --experimental-test-coverage --test --test-concurrency=1 --test-reporter=spec $(find tests -name '*.test.js')",
"test:watch": "node --test --test-reporter=spec --watch $(find tests -name '*.test.js')",
"test:reporter": "playwright test --config=tests/reporter/playwright.config.js",
"test:reporter:visual": "node bin/vizzly.js tdd run \"pnpm run test:reporter\" --no-open",
"test:swift:e2e": "pnpm run build && node clients/swift/scripts/run-e2e.js",
"test:tui": "node --test --test-reporter=spec tests/tui/*.test.js",
"test:tui:docker": "./tests/tui/run-tui-tests.sh",
"smoke:prod:pack": "node scripts/smoke-prod-pack.js",
"lint": "biome check src tests clients/storybook/src clients/storybook/tests clients/static-site/src clients/static-site/tests clients/vitest/src clients/vitest/tests clients/ember/src clients/ember/tests clients/ember/bin",
"lint:fix": "biome check --write --unsafe src tests clients/storybook/src clients/storybook/tests clients/static-site/src clients/static-site/tests clients/vitest/src clients/vitest/tests clients/ember/src clients/ember/tests clients/ember/bin",
"format": "biome format --write src tests clients/storybook/src clients/storybook/tests clients/static-site/src clients/static-site/tests clients/vitest/src clients/vitest/tests clients/ember/src clients/ember/tests clients/ember/bin",
"format:check": "biome format src tests clients/storybook/src clients/storybook/tests clients/static-site/src clients/static-site/tests clients/vitest/src clients/vitest/tests clients/ember/src clients/ember/tests clients/ember/bin",
"fix": "pnpm run format && pnpm run lint:fix"
},
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@vizzly-testing/bear-den": "0.1.2",
"@vizzly-testing/honeydiff": "^0.10.3",
"ansis": "^4.2.0",
"commander": "^14.0.0",
"cosmiconfig": "^9.0.0",
"dotenv": "^17.2.1",
"form-data": "^4.0.0",
"glob": "^13.0.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"zod": "^4.1.12"
},
"tsd": {
"directory": "test-d",
"typingsFile": "src/types/index.d.ts",
"compilerOptions": {
"esModuleInterop": true,
"module": "ESNext",
"moduleResolution": "node",
"strict": true
}
},
"devDependencies": {
"@babel/cli": "^7.28.0",
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.23.6",
"@biomejs/biome": "^2.3.8",
"@heroicons/react": "^2.2.0",
"@modelcontextprotocol/sdk": "^1.0.4",
"@playwright/test": "^1.55.1",
"@tailwindcss/postcss": "^4.1.13",
"@tanstack/react-query": "^5.90.11",
"@types/node": "^25.0.2",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.4.21",
"babel-plugin-react-compiler": "^1.0.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"postcss": "^8.5.6",
"rimraf": "^6.0.1",
"tailwindcss": "^4.1.13",
"tsd": "^0.33.0",
"tui-driver": "github:vizzly-testing/tui-driver",
"typescript": "^6.0.3",
"vite": "^8.0.0",
"wouter": "^3.7.1"
}
}