-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.41 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
{
"name": "@pyyush/dbar",
"version": "1.0.0",
"description": "Replayable proof for browser agents. Deterministic capture, replay, and verification for Playwright.",
"author": "Piyush Vyas",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"bin": {
"dbar": "./dist/cli.js"
},
"files": [
"assets",
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/pyyush/dbar.git"
},
"keywords": [
"browser",
"determinism",
"replay",
"testing",
"cdp",
"playwright",
"automation",
"snapshot",
"capsule"
],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run --exclude src/__tests__/performance-budgets.test.ts",
"coverage": "vitest run --coverage --exclude src/__tests__/performance-budgets.test.ts",
"performance": "vitest run src/__tests__/performance-budgets.test.ts",
"test:watch": "vitest",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"package:check": "node scripts/check-npm-pack.mjs",
"release:verify": "npm run clean && npm run build && npm run typecheck && npm run test && npm run performance && npm run lint && npm run coverage && npm audit && npm run package:check",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build && npm run package:check"
},
"dependencies": {
"zod": "^3.23.0"
},
"peerDependencies": {
"playwright-core": ">=1.40.0"
},
"peerDependenciesMeta": {
"playwright-core": {
"optional": false
}
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"@vitest/coverage-v8": "^4.1.1",
"eslint": "^9.37.0",
"globals": "^17.6.0",
"playwright-core": "^1.52.0",
"tsup": "^8.3.0",
"typescript": "^5.7.0",
"vitest": "^4.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=20.0.0"
}
}