answerlint 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +558 -0
- package/assets/overview.png +0 -0
- package/assets/report-hero.png +0 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +89065 -0
- package/package.json +74 -0
- package/templates/report.hbs +929 -0
package/package.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "answerlint",
|
|
3
|
+
"version": "1.1.1",
|
|
4
|
+
"description": "A CLI tool that audits web content for AEO and GEO scores",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/rakeshcheekatimala/answerlint.git"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/rakeshcheekatimala/answerlint#readme",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/rakeshcheekatimala/answerlint/issues"
|
|
12
|
+
},
|
|
13
|
+
"main": "dist/index.js",
|
|
14
|
+
"bin": {
|
|
15
|
+
"answerlint": "dist/index.js"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"templates",
|
|
20
|
+
"assets"
|
|
21
|
+
],
|
|
22
|
+
"publishConfig": {
|
|
23
|
+
"access": "public"
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "tsup",
|
|
27
|
+
"build:test": "node -e \"require('fs').rmSync('.test-dist',{recursive:true,force:true})\" && tsc --outDir .test-dist --declaration false --declarationMap false --sourceMap false",
|
|
28
|
+
"benchmark": "node --import tsx scripts/benchmark.ts",
|
|
29
|
+
"dev": "tsx src/cli/index.ts",
|
|
30
|
+
"lint": "tsc --noEmit",
|
|
31
|
+
"release": "semantic-release",
|
|
32
|
+
"release:dry-run": "npx -p node@v24 -c \"semantic-release --dry-run --no-ci\"",
|
|
33
|
+
"test": "npm run test:cli-smoke && npm run build:test && node --import tsx --test $(find tests -name '*.test.ts' -print)",
|
|
34
|
+
"test:coverage": "npm run test:cli-smoke && npm run build:test && node ./scripts/run-test-coverage.mjs",
|
|
35
|
+
"test:cli-smoke": "npm run build && node dist/index.js overview && npm run dev -- overview",
|
|
36
|
+
"size:bundle": "node -e \"console.log(require('fs').statSync('dist/index.js').size + ' bytes')\"",
|
|
37
|
+
"size:pack": "npm pack --dry-run"
|
|
38
|
+
},
|
|
39
|
+
"keywords": [
|
|
40
|
+
"aeo",
|
|
41
|
+
"geo",
|
|
42
|
+
"seo",
|
|
43
|
+
"cli",
|
|
44
|
+
"audit",
|
|
45
|
+
"llm",
|
|
46
|
+
"ai-optimization"
|
|
47
|
+
],
|
|
48
|
+
"license": "MIT",
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"chalk": "^5.3.0",
|
|
51
|
+
"cheerio": "1.0.0",
|
|
52
|
+
"commander": "^12.1.0",
|
|
53
|
+
"compromise": "^14.14.4",
|
|
54
|
+
"fast-xml-parser": "^5.5.6",
|
|
55
|
+
"handlebars": "^4.7.8",
|
|
56
|
+
"marked": "^12.0.0",
|
|
57
|
+
"node-fetch": "^3.3.2",
|
|
58
|
+
"ora": "^8.1.1",
|
|
59
|
+
"robots-parser": "^3.0.1",
|
|
60
|
+
"tldts": "^7.0.27"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@types/cheerio": "^0.22.35",
|
|
64
|
+
"@types/handlebars": "^4.1.0",
|
|
65
|
+
"@types/node": "^20.14.0",
|
|
66
|
+
"semantic-release": "^25.0.0",
|
|
67
|
+
"tsup": "^8.1.0",
|
|
68
|
+
"tsx": "^4.15.7",
|
|
69
|
+
"typescript": "^5.5.2"
|
|
70
|
+
},
|
|
71
|
+
"engines": {
|
|
72
|
+
"node": ">=18.17.0"
|
|
73
|
+
}
|
|
74
|
+
}
|