icoa-cli 2.19.12 → 2.19.14
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/dist/commands/ai4ctf.js +39 -38
- package/dist/commands/ctf.js +21 -6
- package/dist/commands/ctf4ai-demo.js +46 -45
- package/dist/commands/exam.js +35 -34
- package/dist/lib/ctfd-client.d.ts +1 -0
- package/dist/lib/ctfd-client.js +31 -1
- package/dist/lib/gemini.js +7 -6
- package/dist/lib/i18n.d.ts +20 -0
- package/dist/lib/i18n.js +56 -13
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "icoa-cli",
|
|
3
|
-
"version": "2.19.
|
|
3
|
+
"version": "2.19.14",
|
|
4
4
|
"description": "ICOA CLI — The world's first CLI-native CTF competition terminal",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"build": "tsc",
|
|
16
16
|
"dev": "tsc --watch",
|
|
17
17
|
"start": "node dist/index.js",
|
|
18
|
-
"postinstall": "node dist/postinstall.js
|
|
18
|
+
"postinstall": "node -e \"try{require('./dist/postinstall.js')}catch(e){}\""
|
|
19
19
|
},
|
|
20
20
|
"keywords": [
|
|
21
21
|
"ctf",
|