@agnt-sdk/studio 0.0.1 → 0.0.3
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 +5 -5
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agnt-sdk/studio",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "V2 manifest-based LLM executor for agnt prompts with CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
8
|
"bin": {
|
|
9
|
-
"agnt": "
|
|
9
|
+
"agnt": "dist/cli/index.js"
|
|
10
10
|
},
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build": "tsc",
|
|
27
27
|
"build:watch": "tsc --watch",
|
|
28
|
-
"test": "vitest run",
|
|
28
|
+
"test": "vitest run",
|
|
29
29
|
"test:watch": "vitest",
|
|
30
30
|
"test:coverage": "vitest run --coverage",
|
|
31
31
|
"clean": "rm -rf dist coverage",
|
|
32
|
-
"prepublishOnly": "npm run build"
|
|
32
|
+
"prepublishOnly": "npm run build && chmod +x dist/cli/index.js"
|
|
33
33
|
},
|
|
34
34
|
"keywords": [
|
|
35
35
|
"llm",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"license": "MIT",
|
|
50
50
|
"repository": {
|
|
51
51
|
"type": "git",
|
|
52
|
-
"url": "https://github.com/agnt-ai/agnt-node.git",
|
|
52
|
+
"url": "git+https://github.com/agnt-ai/agnt-node.git",
|
|
53
53
|
"directory": "packages/studio"
|
|
54
54
|
},
|
|
55
55
|
"homepage": "https://github.com/agnt-ai/agnt-node/tree/main/packages/studio#readme",
|