-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.93 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.93 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
{
"name": "@browser-cli/root",
"private": true,
"type": "module",
"description": "Skill-powered browser automation CLI for AI agents — real browser extensions, optional CDP, no Playwright",
"author": "six-ddc",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/six-ddc/browser-cli.git"
},
"homepage": "https://github.com/six-ddc/browser-cli",
"bugs": {
"url": "https://github.com/six-ddc/browser-cli/issues"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:e2e": "playwright test --config test/e2e-pw/playwright.config.ts",
"test:e2e:basic": "playwright test --config test/e2e-pw/playwright.config.ts basic/",
"test:e2e:advanced": "playwright test --config test/e2e-pw/playwright.config.ts advanced/",
"test:e2e:data": "playwright test --config test/e2e-pw/playwright.config.ts data/",
"test:e2e:state": "playwright test --config test/e2e-pw/playwright.config.ts state/",
"test:e2e:cross": "playwright test --config test/e2e-pw/playwright.config.ts cross/",
"link:cli": "cd apps/cli && pnpm link --global",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"@playwright/test": "^1.58.2",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.0",
"serve": "^14.2.5",
"turbo": "^2.8.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"lint-staged": {
"*.{ts,tsx,js,mjs,json,css,md,yml,yaml}": "prettier --write"
},
"packageManager": "pnpm@10.29.3",
"engines": {
"node": ">=20"
}
}