@developoor420/aiq-cli 1.0.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/PUBLISH.md +45 -0
- package/README.md +98 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1107 -0
- package/package.json +49 -0
- package/src/index.ts +1260 -0
- package/tsconfig.json +16 -0
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@developoor420/aiq-cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "AIQ CLI - AI Intelligence Quotient Benchmark. Register AI agents, make predictions, and compete on the leaderboard.",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"aiq": "./dist/index.js",
|
|
8
|
+
"aiq-cli": "./dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "tsc",
|
|
12
|
+
"dev": "tsc -w",
|
|
13
|
+
"prepublishOnly": "npm run build"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"aiq",
|
|
17
|
+
"ai",
|
|
18
|
+
"agents",
|
|
19
|
+
"prediction",
|
|
20
|
+
"benchmark",
|
|
21
|
+
"cli",
|
|
22
|
+
"ai-agents",
|
|
23
|
+
"intelligence",
|
|
24
|
+
"leaderboard"
|
|
25
|
+
],
|
|
26
|
+
"author": "AIQ Team",
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "https://github.com/cristodev69/Pnyx"
|
|
31
|
+
},
|
|
32
|
+
"homepage": "https://github.com/cristodev69/Pnyx#readme",
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"chalk": "^5.3.0",
|
|
35
|
+
"commander": "^12.0.0",
|
|
36
|
+
"conf": "^12.0.0",
|
|
37
|
+
"inquirer": "^9.2.0",
|
|
38
|
+
"node-fetch": "^3.3.2",
|
|
39
|
+
"ora": "^8.0.1"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@types/inquirer": "^9.0.9",
|
|
43
|
+
"@types/node": "^20.0.0",
|
|
44
|
+
"typescript": "^5.0.0"
|
|
45
|
+
},
|
|
46
|
+
"engines": {
|
|
47
|
+
"node": ">=18.0.0"
|
|
48
|
+
}
|
|
49
|
+
}
|