-
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) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 2.91 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": "minifetch-api",
"version": "1.3.4",
"description": "Minifetch.com API Client. Pay-per-URL SEO audits. Composable toolkit for AI agents and automation pipelines.",
"type": "module",
"main": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"SEO",
"SEO page audit",
"SEO research",
"SEO toolkit",
"SEO skill",
"technical SEO",
"pay-per-fetch",
"pay-per-url",
"GEO",
"Generative Engine Optimization",
"AEO",
"Answer Engine Optimization",
"hosted extraction",
"content extraction",
"content indexing",
"extract",
"html",
"html parser",
"json-ld",
"JSON LD",
"link analysis",
"link extraction",
"metadata",
"meta tags",
"open graph",
"og tags",
"AI",
"AI Agents",
"AI readability",
"agent skills",
"automation",
"monitoring",
"LLM",
"previews",
"social cards",
"twitter cards",
"site monitoring",
"x402",
"micropayments",
"usdc"
],
"bugs": {
"url": "https://github.com/Niche-Networks/minifetch-api/issues"
},
"homepage": "https://minifetch.com",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Niche-Networks/minifetch-api.git"
},
"scripts": {
"dist:clean": "rm -rf dist",
"build": "pnpm run dist:clean && pnpm run build:esm",
"build:esm": "tsc -p tsconfig.json",
"format": "prettier -c .prettierrc --write \"**/*.{ts,js,cjs,json,md}\"",
"format:check": "prettier -c .prettierrc --check \"**/*.{ts,js,cjs,json,md}\"",
"lint": "eslint . --ext .ts --fix",
"lint:check": "eslint . --ext .ts",
"test": "SKIP_DEBUG_TESTS=true vitest",
"test:run": "SKIP_DEBUG_TESTS=true vitest run",
"test:file": "vitest run",
"test:debug": "vitest run test/debug.test.ts",
"test:coverage": "vitest run --coverage",
"example:ts": "cd example-typescript && pnpm install && pnpm start",
"example:js": "cd example-javascript && pnpm install && pnpm start",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@solana/kit": "^5.4.0",
"@x402/evm": "^2.2.0",
"@x402/fetch": "^2.2.0",
"@x402/svm": "^2.2.0",
"bs58": "^6.0.0",
"viem": "^2.23.1"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/node": "^25.2.0",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"@vitest/coverage-v8": "^3.0.0",
"dotenv": "^16.4.7",
"eslint": "^9.24.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.9",
"eslint-plugin-prettier": "^5.2.6",
"prettier": "3.5.2",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT"
}