complior 0.0.1 → 0.9.0
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/package.json +24 -6
- package/scripts/postinstall.js +1 -1
package/package.json
CHANGED
|
@@ -1,25 +1,43 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "complior",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "AI Act Compliance Scanner & Fixer — EU AI Act compliance
|
|
6
|
-
"license": "
|
|
5
|
+
"description": "AI Act Compliance Scanner & Fixer — EU AI Act compliance for your AI systems. CLI, TUI dashboard, and background daemon.",
|
|
6
|
+
"license": "AGPL-3.0-only",
|
|
7
|
+
"author": {
|
|
8
|
+
"name": "Complior",
|
|
9
|
+
"url": "https://complior.ai"
|
|
10
|
+
},
|
|
7
11
|
"homepage": "https://complior.ai",
|
|
8
12
|
"repository": {
|
|
9
13
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/
|
|
14
|
+
"url": "https://github.com/complior/complior"
|
|
15
|
+
},
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/complior/complior/issues"
|
|
18
|
+
},
|
|
19
|
+
"funding": {
|
|
20
|
+
"type": "individual",
|
|
21
|
+
"url": "https://complior.ai"
|
|
11
22
|
},
|
|
12
23
|
"keywords": [
|
|
13
24
|
"ai",
|
|
14
25
|
"compliance",
|
|
15
26
|
"eu-ai-act",
|
|
27
|
+
"ai-act",
|
|
16
28
|
"scanner",
|
|
17
29
|
"fixer",
|
|
18
30
|
"tui",
|
|
19
|
-
"terminal"
|
|
31
|
+
"terminal",
|
|
32
|
+
"cli",
|
|
33
|
+
"gdpr",
|
|
34
|
+
"audit",
|
|
35
|
+
"governance",
|
|
36
|
+
"risk-assessment",
|
|
37
|
+
"ai-safety",
|
|
38
|
+
"regulation"
|
|
20
39
|
],
|
|
21
40
|
"bin": {
|
|
22
|
-
"ai-comply": "./bin/run.js",
|
|
23
41
|
"complior": "./bin/run.js"
|
|
24
42
|
},
|
|
25
43
|
"scripts": {
|
package/scripts/postinstall.js
CHANGED
|
@@ -8,7 +8,7 @@ import { execSync } from "node:child_process";
|
|
|
8
8
|
|
|
9
9
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
10
10
|
const BIN_DIR = join(__dirname, "..", "bin");
|
|
11
|
-
const REPO = "
|
|
11
|
+
const REPO = "complior/complior";
|
|
12
12
|
|
|
13
13
|
function getPlatformArtifact() {
|
|
14
14
|
const platform = process.platform;
|