-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.65 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
{
"name": "humanjs",
"version": "0.0.0",
"private": true,
"description": "Humanize browser automation for AI agents, QA tests, and demos.",
"author": "Gonzalo Muñoz <toti@eventurex.com.ar>",
"license": "MIT",
"homepage": "https://humanjs.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/totigm/humanjs.git"
},
"bugs": {
"url": "https://github.com/totigm/humanjs/issues"
},
"keywords": [
"playwright",
"browser-automation",
"humanize",
"ai-agents",
"qa",
"testing"
],
"type": "module",
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"test:integration": "turbo run test:integration",
"typecheck": "turbo run typecheck",
"check:exports": "turbo run check:exports",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish",
"clean": "turbo run clean && rm -rf node_modules",
"prepare": "lefthook install",
"demo:click": "turbo run build --filter=@humanjs/playwright... && pnpm --filter @humanjs/examples click",
"demo:compare": "turbo run build --filter=@humanjs/playwright... && pnpm --filter @humanjs/examples compare",
"demo:primitives": "turbo run build --filter=@humanjs/playwright... && pnpm --filter @humanjs/examples primitives",
"demo:read": "turbo run build --filter=@humanjs/playwright... && pnpm --filter @humanjs/examples read",
"demo:record": "turbo run build --filter=@humanjs/recorder... && pnpm --filter @humanjs/examples record",
"demo:record-manual": "turbo run build --filter=@humanjs/playwright... && pnpm --filter @humanjs/examples record-manual",
"demo:scroll": "turbo run build --filter=@humanjs/playwright... && pnpm --filter @humanjs/examples scroll",
"demo:type": "turbo run build --filter=@humanjs/playwright... && pnpm --filter @humanjs/examples type",
"demo:generate": "turbo run build --filter=@humanjs/playwright... && pnpm --filter @humanjs/examples generate"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"@changesets/cli": "^2.31.0",
"@commitlint/cli": "^21.1.0",
"@commitlint/config-conventional": "^21.1.0",
"@types/node": "^25.9.1",
"lefthook": "^2.1.9",
"publint": "^0.3.21",
"tsup": "^8.5.1",
"tsx": "^4.22.4",
"turbo": "^2.10.0",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}