devteam-sdk 0.1.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,60 @@
1
+ {
2
+ "name": "devteam-sdk",
3
+ "version": "0.1.0",
4
+ "description": "Orchestrate AI agent swarms with Temporal in 10 lines of code",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.js",
11
+ "types": "./dist/index.d.ts"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "README.md",
17
+ "LICENSE"
18
+ ],
19
+ "scripts": {
20
+ "build": "tsc",
21
+ "dev": "tsc --watch",
22
+ "clean": "rm -rf dist",
23
+ "prepublishOnly": "npm run clean && npm run build",
24
+ "typecheck": "tsc --noEmit"
25
+ },
26
+ "keywords": [
27
+ "ai",
28
+ "agents",
29
+ "temporal",
30
+ "orchestration",
31
+ "swarm",
32
+ "llm",
33
+ "claude",
34
+ "devteam",
35
+ "workflow",
36
+ "dag"
37
+ ],
38
+ "author": "Matwal LTD",
39
+ "license": "MIT",
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "https://github.com/Marsala-dev/devteam-orchestrator.git",
43
+ "directory": "packages/sdk"
44
+ },
45
+ "homepage": "https://doc.devteam.marsala.dev",
46
+ "publishConfig": {
47
+ "access": "public"
48
+ },
49
+ "engines": {
50
+ "node": ">=18.0.0"
51
+ },
52
+ "dependencies": {
53
+ "@temporalio/client": "^1.11.0",
54
+ "zod": "^3.23.0"
55
+ },
56
+ "devDependencies": {
57
+ "typescript": "^5.5.0",
58
+ "@types/node": "^20.14.0"
59
+ }
60
+ }