jetic-cli 0.1.2 → 0.1.4
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 +450 -50
- package/dist/dashboard/assets/index-DIr8-5sp.css +1 -0
- package/dist/dashboard/assets/index-DeZbqocl.js +379 -0
- package/dist/dashboard/index.html +3 -3
- package/dist/dashboard/jetic.svg +4 -0
- package/dist/dashboard/jetic_light.png +0 -0
- package/dist/dashboard/jetic_logo.svg +10 -0
- package/dist/dashboard/jetic_white_bg.png +0 -0
- package/dist/index.js +2197 -1375
- package/package.json +7 -9
- package/dist/dashboard/assets/index-Dk01eD-3.js +0 -347
- package/dist/dashboard/assets/index-cvc-GV1-.css +0 -1
- package/dist/dashboard/react.svg +0 -1
- package/dist/dashboard/vite.svg +0 -1
- package/src/commands/config.ts +0 -36
- package/src/commands/dev.ts +0 -451
- package/src/commands/init.ts +0 -64
- package/src/commands/inspect.ts +0 -47
- package/src/commands/memory.ts +0 -71
- package/src/commands/scan.ts +0 -22
- package/src/commands/simulate-workflow.ts +0 -794
- package/src/commands/simulate.ts +0 -512
- package/src/index.ts +0 -26
- package/tsconfig.json +0 -8
- package/tsup.config.ts +0 -26
package/package.json
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jetic-cli",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "AI-Native API Behavior Testing & Discovery
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "AI-Native API Behavior Testing & Discovery Tool — CLI and Local Studio Dashboard",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"jetic": "./dist/index.js"
|
|
8
8
|
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
9
12
|
"scripts": {
|
|
10
|
-
"build": "
|
|
13
|
+
"build": "tsup && node -e \"try { require('fs').cpSync('../dashboard/dist', './dist/dashboard', {recursive: true, force: true}); console.log('Bundled dashboard into dist/dashboard'); } catch (e) { console.warn('Could not bundle dashboard dist:', e.message); }\"",
|
|
11
14
|
"clean": "rm -rf dist"
|
|
12
15
|
},
|
|
13
16
|
"keywords": [
|
|
@@ -26,6 +29,7 @@
|
|
|
26
29
|
],
|
|
27
30
|
"author": "Jetic Labs",
|
|
28
31
|
"license": "ISC",
|
|
32
|
+
"homepage": "https://jetic.online",
|
|
29
33
|
"repository": {
|
|
30
34
|
"type": "git",
|
|
31
35
|
"url": "git+https://github.com/jeticlabs/jetic.git",
|
|
@@ -37,12 +41,6 @@
|
|
|
37
41
|
"dependencies": {
|
|
38
42
|
"@ai-sdk/openai": "^4.0.41",
|
|
39
43
|
"@faker-js/faker": "^9.0.0",
|
|
40
|
-
"@jetic/core": "workspace:*",
|
|
41
|
-
"@jetic/dashboard": "workspace:*",
|
|
42
|
-
"@jetic/memory": "workspace:*",
|
|
43
|
-
"@jetic/model": "workspace:*",
|
|
44
|
-
"@jetic/scanner": "workspace:*",
|
|
45
|
-
"@jetic/simulator": "workspace:*",
|
|
46
44
|
"@openrouter/ai-sdk-provider": "^3.0.0",
|
|
47
45
|
"ai": "^7.0.65",
|
|
48
46
|
"commander": "^12.0.0",
|