@ghostspeak/sdk 1.1.3 → 1.2.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/README.md +154 -33
- package/dist/index.d.ts +1425 -1737
- package/dist/index.js +899 -205
- package/dist/index.js.map +1 -1
- package/package.json +14 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ghostspeak/sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "TypeScript SDK for GhostSpeak AI Agent Commerce Protocol",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -21,9 +21,15 @@
|
|
|
21
21
|
"type-check": "tsc --noEmit",
|
|
22
22
|
"test": "vitest",
|
|
23
23
|
"test:ci": "vitest run",
|
|
24
|
-
"
|
|
24
|
+
"test:unit": "vitest run tests/unit",
|
|
25
|
+
"test:integration": "vitest run tests/integration",
|
|
26
|
+
"test:e2e": "vitest run tests/e2e",
|
|
27
|
+
"test:watch": "vitest watch",
|
|
28
|
+
"test:coverage": "vitest run --coverage",
|
|
29
|
+
"test:ui": "vitest --ui",
|
|
30
|
+
"lint": "eslint src",
|
|
25
31
|
"generate": "tsx scripts/generate.ts",
|
|
26
|
-
"clean": "rm -rf dist",
|
|
32
|
+
"clean": "rm -rf dist coverage",
|
|
27
33
|
"fix-imports": "tsx scripts/fix-imports.ts",
|
|
28
34
|
"fix-errors": "tsx scripts/fix-errors.ts",
|
|
29
35
|
"fix-instruction-types": "tsx scripts/fix-instruction-types.ts",
|
|
@@ -41,14 +47,14 @@
|
|
|
41
47
|
],
|
|
42
48
|
"author": "GhostSpeak Protocol",
|
|
43
49
|
"license": "MIT",
|
|
44
|
-
"homepage": "https://github.com/
|
|
50
|
+
"homepage": "https://github.com/Prompt-or-Die/ghostspeak#readme",
|
|
45
51
|
"repository": {
|
|
46
52
|
"type": "git",
|
|
47
|
-
"url": "git+https://github.com/
|
|
53
|
+
"url": "git+https://github.com/Prompt-or-Die/ghostspeak.git",
|
|
48
54
|
"directory": "packages/sdk-typescript"
|
|
49
55
|
},
|
|
50
56
|
"bugs": {
|
|
51
|
-
"url": "https://github.com/
|
|
57
|
+
"url": "https://github.com/Prompt-or-Die/ghostspeak/issues"
|
|
52
58
|
},
|
|
53
59
|
"publishConfig": {
|
|
54
60
|
"access": "public"
|
|
@@ -80,6 +86,8 @@
|
|
|
80
86
|
"@types/node": "^24.0.13",
|
|
81
87
|
"@typescript-eslint/eslint-plugin": "^8.36.0",
|
|
82
88
|
"@typescript-eslint/parser": "^8.36.0",
|
|
89
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
90
|
+
"@vitest/ui": "^3.2.4",
|
|
83
91
|
"eslint": "^8.0.0",
|
|
84
92
|
"tsup": "^8.0.0",
|
|
85
93
|
"tsx": "^4.20.3",
|