-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.71 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.71 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
{
"name": "@adobe/spacecat-shared-html-analyzer",
"version": "1.2.9",
"description": "Analyze HTML content visibility for AI crawlers and citations - compare static HTML vs fully rendered content",
"type": "module",
"engines": {
"node": ">=22.0.0 <25.0.0",
"npm": ">=10.9.0 <12.0.0"
},
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "c8 mocha",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"clean": "rm -rf package-lock.json node_modules",
"build": "rollup -c",
"build:chrome": "rollup -c && echo '✅ Chrome extension bundle ready: dist/html-analyzer.min.js'"
},
"mocha": {
"require": "test/setup-env.js",
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json",
"spec": "test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/spacecat-shared.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/spacecat-shared/issues"
},
"homepage": "https://github.com/adobe/spacecat-shared#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"turndown": "^7.2.0",
"marked": "^18.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^1.0.0",
"chai": "6.2.2",
"chai-as-promised": "8.0.2",
"rollup": "^4.52.2",
"sinon": "21.0.3",
"sinon-chai": "4.0.1"
},
"directories": {
"test": "test"
},
"keywords": [
"html",
"content-analysis",
"ai-visibility",
"web-scraping",
"citation",
"llm",
"diff",
"lcs",
"web-crawling",
"seo",
"spacecat"
]
}