-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 4.99 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 4.99 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "web-embedding",
"version": "0.3.9",
"mcpName": "io.github.jongko54/web-embedding",
"description": "Source-first Skill and MCP workflow for URL-based website cloning, capture, rebuild, and fidelity verification.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/jongko54/webEmbedding#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jongko54/webEmbedding.git"
},
"bugs": {
"url": "https://github.com/jongko54/webEmbedding/issues"
},
"keywords": [
"website-cloning",
"ai-agent",
"mcp",
"playwright",
"har",
"web-automation",
"frontend",
"visual-regression",
"browser-capture",
"site-reconstruction"
],
"publishConfig": {
"access": "public"
},
"bin": {
"web-embedding": "bin/web-embedding.mjs"
},
"engines": {
"node": ">=18"
},
"files": [
"server.json",
"CHANGELOG.md",
".agents/plugins/marketplace.json",
".claude-plugin/marketplace.json",
"deploy/vercel-mcp",
"bin",
"bundle",
"!bundle/**/__pycache__",
"!bundle/**/*.pyc",
"docs/assets/webembedding-skill-mcp-card.png",
"fixtures/frame-shadow-parity",
"python",
"!python/**/__pycache__",
"!python/**/*.pyc",
"scripts/bootstrap.sh",
"scripts/check_demo_root_interaction_parity.py",
"scripts/check_integration_smoke.py",
"scripts/check_clone_quality_bench.py",
"scripts/benchmark_routes.py",
"scripts/check_benchmark_report.py",
"scripts/check_benchmark_evidence.py",
"scripts/check_job_queue_smoke.py",
"scripts/check_har_replay_smoke.py",
"scripts/benchmark_authenticated_corpus.py",
"scripts/summarize_benchmark_scores.py",
"scripts/classify_pipeline_failures.py",
"scripts/check_production_readiness.py",
"scripts/release_bundle.py",
"scripts/telemetry_collector.py",
"scripts/summarize_telemetry.py",
"scripts/check_ai_selection_goldens.py",
"!scripts/**/__pycache__",
"!scripts/**/*.pyc",
"evals/ai-selection",
"evals/apps-sdk",
"docs/universal-benchmark-corpus.txt",
"docs/universal-benchmark-expectations.json",
"docs/benchmark-evidence.json",
"docs/production-pipeline-gates.json",
"docs/production-pipeline.md",
"docs/authenticated-dashboard-corpus.example.json",
"docs/policy-and-safety-guardrails.md",
"docs/github-listing.md",
"docs/telemetry.md",
"docs/ai-distribution.md",
"docs/apps-sdk-submission.md",
"docs/privacy.md",
"docs/terms.md",
"README.md",
"LICENSE"
],
"scripts": {
"install:local": "node ./bin/web-embedding.mjs install",
"doctor": "node ./bin/web-embedding.mjs doctor",
"uninstall:local": "node ./bin/web-embedding.mjs uninstall",
"pack:release": "python3 ./scripts/release_bundle.py",
"check:root-parity:local": "python3 ./scripts/check_demo_root_interaction_parity.py",
"check:integration:local": "python3 ./scripts/check_integration_smoke.py",
"check:clone-bench:local": "python3 ./scripts/check_clone_quality_bench.py",
"check:clone-score-gate:local": "python3 ./scripts/check_clone_quality_bench.py https://www.mozilla.org/ --output-root ./.tmp/clone-score-gate --wait-seconds 1 --timeout-seconds 35 --no-breakpoints --min-score 85 --min-screen-score 85 --require-ready",
"check:benchmark-routes:local": "python3 ./scripts/benchmark_routes.py --urls-file docs/universal-benchmark-corpus.txt --corpus-name universal-route-corpus --out ./.tmp/universal-route-benchmark --timeout-seconds 20 && python3 ./scripts/check_benchmark_report.py --report ./.tmp/universal-route-benchmark/universal-route-report.json --expectations docs/universal-benchmark-expectations.json",
"check:benchmark-evidence:local": "python3 ./scripts/check_benchmark_evidence.py",
"check:job-queue:local": "python3 ./scripts/check_job_queue_smoke.py",
"check:har-replay:local": "python3 ./scripts/check_har_replay_smoke.py",
"check:authenticated-corpus:local": "python3 ./scripts/benchmark_authenticated_corpus.py --manifest docs/authenticated-dashboard-corpus.example.json --validate-only --out ./.tmp/authenticated-dashboard-corpus-validate",
"classify:pipeline-failures": "python3 ./scripts/classify_pipeline_failures.py",
"check:production-readiness:local": "npm run check:benchmark-routes:local && npm run check:job-queue:local && npm run check:har-replay:local && npm run check:authenticated-corpus:local && python3 ./scripts/check_production_readiness.py --report ./.tmp/universal-route-benchmark/universal-route-report.json",
"summarize:benchmark-scores": "python3 ./scripts/summarize_benchmark_scores.py",
"telemetry:collector": "python3 ./scripts/telemetry_collector.py",
"telemetry:summarize": "python3 ./scripts/summarize_telemetry.py",
"check:ai-selection:local": "python3 ./scripts/check_ai_selection_goldens.py --cases evals/ai-selection/webembedding-golden-prompts.json",
"check:remote-mcp:local": "npm --prefix deploy/vercel-mcp run smoke"
},
"dependencies": {
"playwright-core": "^1.59.1"
}
}