-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.44 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.44 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
{
"name": "@gander-tools/diff-voyager",
"version": "0.0.0",
"description": "Multi-process visual regression testing platform with API server, Worker, and CLI",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
"./api": "./dist/api.js",
"./worker": "./dist/worker.js",
"./cli": "./dist/cli.js"
},
"bin": {
"console": "./dist/cli.js"
},
"scripts": {
"dev:api": "bun run --watch src/entrypoints/api.ts",
"dev:worker": "bun run --watch src/entrypoints/worker.ts",
"dev:cli": "bun run src/entrypoints/cli.ts",
"build": "tsdown",
"build:prod": "NODE_ENV=production tsdown",
"start:api": "node dist/api.js",
"start:worker": "node dist/worker.js",
"start:cli": "node dist/cli.js",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"format": "bunx @biomejs/biome check --write .",
"format:check": "bunx @biomejs/biome check .",
"lint": "bunx @biomejs/biome lint .",
"typecheck": "bun run --bun tsc --noEmit",
"prepublishOnly": "bun run build:prod"
},
"keywords": [
"visual-regression",
"testing",
"playwright",
"crawlee",
"snapshot",
"diff",
"multi-process",
"orpc",
"api",
"cli"
],
"author": {
"name": "Adam Gąsowski",
"url": "https://github.com/gander"
},
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/gander-tools/diff-voyager.git"
},
"bugs": {
"url": "https://github.com/gander-tools/diff-voyager/issues"
},
"homepage": "https://github.com/gander-tools/diff-voyager#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"@fastify/cors": "^11.1.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/swagger": "^9.6.1",
"@fastify/swagger-ui": "^5.2.3",
"@orpc/server": "^1.13.4",
"@orpc/standard-server-fastify": "^1.12.2",
"commander": "^14.0.2",
"crawlee": "^3.15.3",
"drizzle-orm": "^0.45.1",
"fastify": "^5.7.1",
"playwright": "^1.58.0",
"uuidv7": "^1.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/bun": "latest",
"@types/node": "^24.0.0",
"drizzle-kit": "^0.31.0",
"tsdown": "^0.20.1",
"typescript": "^5.9.3"
},
"engines": {
"bun": ">=1.3.0",
"node": ">=24.0.0"
},
"trustedDependencies": [
"@biomejs/biome",
"playwright"
]
}