@volund-ia/sdk 0.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/package.json ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "@volund-ia/sdk",
3
+ "version": "0.2.0",
4
+ "description": "Cliente TypeScript para rodar agentes do Volund OS com streaming em tempo real.",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.mjs",
8
+ "types": "./dist/index.d.mts",
9
+ "exports": {
10
+ ".": {
11
+ "import": {
12
+ "types": "./dist/index.d.mts",
13
+ "default": "./dist/index.mjs"
14
+ },
15
+ "require": {
16
+ "types": "./dist/index.d.cts",
17
+ "default": "./dist/index.cjs"
18
+ }
19
+ }
20
+ },
21
+ "files": [
22
+ "dist",
23
+ "README.md"
24
+ ],
25
+ "engines": {
26
+ "node": ">=18"
27
+ },
28
+ "publishConfig": {
29
+ "access": "public"
30
+ },
31
+ "sideEffects": false,
32
+ "scripts": {
33
+ "build": "tsdown",
34
+ "dev": "tsdown --watch",
35
+ "typecheck": "tsc --noEmit",
36
+ "test": "vitest run",
37
+ "test:watch": "vitest",
38
+ "sync:protocol": "node scripts/sync-protocol.mjs",
39
+ "check:protocol": "node scripts/check-protocol-drift.mjs",
40
+ "example": "tsx examples/quickstart.ts",
41
+ "prepare": "tsdown",
42
+ "prepublishOnly": "npm run check:protocol && npm run typecheck && npm run test && npm run build"
43
+ },
44
+ "keywords": [
45
+ "volund",
46
+ "agents",
47
+ "sdk",
48
+ "streaming",
49
+ "sse",
50
+ "ai"
51
+ ],
52
+ "license": "MIT",
53
+ "dependencies": {
54
+ "eventsource-parser": "^3.0.0"
55
+ },
56
+ "devDependencies": {
57
+ "@types/node": "^20.14.0",
58
+ "tsdown": "^0.22.3",
59
+ "tsx": "^4.16.0",
60
+ "typescript": "^5.5.0",
61
+ "unrun": "^0.3.1",
62
+ "vitest": "^2.0.0"
63
+ },
64
+ "directories": {
65
+ "example": "examples",
66
+ "test": "tests"
67
+ },
68
+ "repository": {
69
+ "type": "git",
70
+ "url": "git+https://github.com/anaraque-l/volund-sdk.git"
71
+ },
72
+ "author": "Ana Raquel",
73
+ "bugs": {
74
+ "url": "https://github.com/anaraque-l/volund-sdk/issues"
75
+ },
76
+ "homepage": "https://github.com/anaraque-l/volund-sdk#readme"
77
+ }