@aiacta-org/ai-attribution-lint 1.0.0 → 1.0.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 +2 -1
- package/package.json +40 -5
package/README.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# @aiacta-org/ai-attribution-lint
|
|
2
2
|
|
|
3
|
-
> CLI validator for `ai-attribution.txt` files
|
|
3
|
+
> CLI validator for `ai-attribution.txt` files. The [AIACTA](https://github.com/mobeloper/aiacta/blob/main/publications/AIACTA_FrameworkV1_0_EricMichel_2026March24.pdf) open standard for AI content attribution (Proposal 4, §5.7).
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@aiacta-org/ai-attribution-lint)
|
|
6
6
|
[](../../LICENSE)
|
|
7
7
|
[](../../docs/proposals/proposal-4-ai-attribution-txt.md)
|
|
8
8
|
|
|
9
|
+
|
|
9
10
|
---
|
|
10
11
|
|
|
11
12
|
## What is this?
|
package/package.json
CHANGED
|
@@ -1,17 +1,52 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiacta-org/ai-attribution-lint",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "CLI validator for ai-attribution.txt files (AIACTA Proposal 4 §5.7)",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "CLI validator for ai-attribution.txt files. The AIACTA open standard for AI content attribution and publisher rights (AIACTA Proposal 4, §5.7)",
|
|
5
5
|
"author": "Eric Michel",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
|
-
"
|
|
7
|
+
"homepage": "https://github.com/aiacta-org/aiacta/tree/main/packages/ai-attribution-lint#readme",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/aiacta-org/aiacta.git",
|
|
11
|
+
"directory": "packages/ai-attribution-lint"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/aiacta-org/aiacta/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"aiacta",
|
|
18
|
+
"ai-attribution",
|
|
19
|
+
"ai-attribution-txt",
|
|
20
|
+
"attribution",
|
|
21
|
+
"content-attribution",
|
|
22
|
+
"ai-transparency",
|
|
23
|
+
"ai-copyright",
|
|
24
|
+
"publisher-rights",
|
|
25
|
+
"content-creators",
|
|
26
|
+
"open-standard",
|
|
27
|
+
"linter",
|
|
28
|
+
"validator",
|
|
29
|
+
"cli",
|
|
30
|
+
"web-standard",
|
|
31
|
+
"robots-txt",
|
|
32
|
+
"ai-crawl",
|
|
33
|
+
"spdx",
|
|
34
|
+
"content-license"
|
|
35
|
+
],
|
|
36
|
+
"bin": {
|
|
37
|
+
"ai-attribution-lint": "./src/cli.js"
|
|
38
|
+
},
|
|
8
39
|
"main": "./src/index.js",
|
|
9
|
-
"scripts": {
|
|
40
|
+
"scripts": {
|
|
41
|
+
"test": "jest"
|
|
42
|
+
},
|
|
10
43
|
"dependencies": {
|
|
11
44
|
"axios": "^1.6.0",
|
|
12
45
|
"spdx-license-ids": "^3.0.0",
|
|
13
46
|
"chalk": "^5.0.0",
|
|
14
47
|
"yargs": "^17.0.0"
|
|
15
48
|
},
|
|
16
|
-
"devDependencies": {
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"jest": "^29.0.0"
|
|
51
|
+
}
|
|
17
52
|
}
|