@aiacta-org/crawl-manifest-client 1.0.0 → 1.0.2
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 +1 -1
- package/package.json +43 -5
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @aiacta-org/crawl-manifest-client
|
|
2
2
|
|
|
3
|
-
> Query any AIACTA-compliant AI provider's Crawl Manifest API
|
|
3
|
+
> Query any AIACTA-compliant AI provider's Crawl Manifest API. See exactly which of your pages were crawled, when, and for what purpose ([AIACTA](https://github.com/mobeloper/aiacta/blob/main/publications/AIACTA_FrameworkV1_0_EricMichel_2026March24.pdf) Proposal 1, §2.2).
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@aiacta-org/crawl-manifest-client)
|
|
6
6
|
[](../../LICENSE)
|
package/package.json
CHANGED
|
@@ -1,10 +1,48 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiacta-org/crawl-manifest-client",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Client
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Client for the AIACTA Crawl Manifest API. Query AI providers to see which of your pages were crawled, when, and for what purpose (AIACTA Proposal 1, §2.2)",
|
|
5
5
|
"author": "Eric Michel",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"homepage": "https://github.com/aiacta-org/aiacta/tree/main/packages/crawl-manifest-client#readme",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/aiacta-org/aiacta.git",
|
|
11
|
+
"directory": "packages/crawl-manifest-client"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/aiacta-org/aiacta/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"aiacta",
|
|
18
|
+
"ai-attribution",
|
|
19
|
+
"crawl-manifest",
|
|
20
|
+
"ai-crawler",
|
|
21
|
+
"ai-transparency",
|
|
22
|
+
"attribution",
|
|
23
|
+
"content-attribution",
|
|
24
|
+
"publisher-rights",
|
|
25
|
+
"open-standard",
|
|
26
|
+
"ai-crawl",
|
|
27
|
+
"content-creators",
|
|
28
|
+
"api-client",
|
|
29
|
+
"pagination",
|
|
30
|
+
"rate-limiting",
|
|
31
|
+
"content-hash",
|
|
32
|
+
"ai-copyright",
|
|
33
|
+
"web-standard",
|
|
34
|
+
"crawl-audit"
|
|
35
|
+
],
|
|
6
36
|
"main": "./src/node/index.js",
|
|
7
|
-
"scripts": {
|
|
8
|
-
|
|
9
|
-
|
|
37
|
+
"scripts": {
|
|
38
|
+
"test": "jest"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"axios": "^1.6.0",
|
|
42
|
+
"node-cache": "^5.1.0"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"jest": "^29.0.0",
|
|
46
|
+
"nock": "^14.0.11"
|
|
47
|
+
}
|
|
10
48
|
}
|