-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 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
{
"name": "@automaze/proof",
"version": "0.20260311.0",
"description": "Visual proof of work for automated code changes",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"proof": "./dist/cli.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && bun build ./src/index.ts --outdir ./dist --target node --external playwright --external playwright-core && bun build ./src/cli.ts --outdir ./dist --target node --external playwright --external playwright-core",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit",
"test": "bun test src/ test-app/cli/",
"clean": "rm -rf dist"
},
"dependencies": {
"playwright": "^1.50.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/bun": "^1.0.0",
"typescript": "^5.3.0"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/automazeio/proof"
}
}