-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.61 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
{
"name": "hanzi-browse",
"version": "1.0.0",
"description": "Open-source browser automation powered by any LLM",
"license": "PolyForm-Noncommercial-1.0.0",
"author": "hanzili",
"repository": {
"type": "git",
"url": "https://github.com/hanzili/hanzi-browse.git"
},
"private": true,
"type": "module",
"scripts": {
"dev": "vite build --watch --config vite.config.js",
"build": "vite build --config vite.config.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.{js,jsx,json,html,css}\",\"*.{json,md}\"",
"quality": "npm run lint && npm run complexity && npm run dead-code",
"complexity": "eslint src/ --format=json > /dev/null || true && echo 'Complexity check complete'",
"dead-code": "knip --exclude exports,types,enumMembers",
"deps": "depcheck --ignores='eslint,prettier'",
"circular": "madge --circular --extensions js src/",
"test:extract": "node extract-logs.js",
"test:analyze": "node analyze-behavior.js",
"test:auto": "node test-automation.js",
"test:compare": "node compare-extensions.js"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@preact/preset-vite": "^2.8.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/preact": "^3.2.4",
"depcheck": "^1.4.7",
"eslint": "^8.57.0",
"eslint-plugin-sonarjs": "^0.25.1",
"jsdom": "^29.0.2",
"knip": "^5.0.0",
"madge": "^6.1.0",
"prettier": "^3.2.5",
"vite": "^8.0.10",
"vitest": "^4.1.5"
},
"dependencies": {
"preact": "^10.29.0"
}
}