agentic-workflow-architecture 1.0.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,81 @@
1
+ {
2
+ "name": "agentic-workflow-architecture",
3
+ "version": "1.0.0",
4
+ "description": "TypeScript SDK for Agentic Workflow Architecture (AWA)",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ }
14
+ },
15
+ "bin": {
16
+ "awa": "dist/cli/index.js"
17
+ },
18
+ "scripts": {
19
+ "build": "tsup src/index.ts src/cli/index.ts --format cjs,esm --dts",
20
+ "dev": "tsup src/index.ts src/cli/index.ts --format cjs,esm --dts --watch",
21
+ "db:generate": "prisma generate",
22
+ "db:push": "prisma db push",
23
+ "db:studio": "prisma studio",
24
+ "lint": "eslint src/",
25
+ "test": "vitest",
26
+ "typecheck": "tsc --noEmit",
27
+ "prepublishOnly": "npm run build"
28
+ },
29
+ "files": [
30
+ "dist",
31
+ "README.md",
32
+ "LICENSE"
33
+ ],
34
+ "publishConfig": {
35
+ "registry": "https://registry.npmjs.org/",
36
+ "access": "public"
37
+ },
38
+ "keywords": [
39
+ "awa",
40
+ "agentic",
41
+ "workflow",
42
+ "process",
43
+ "bpmn",
44
+ "ai-agent"
45
+ ],
46
+ "author": "AWA Specification",
47
+ "license": "Apache-2.0",
48
+ "repository": {
49
+ "type": "git",
50
+ "url": "git+https://github.com/yannickhuchard/agentic-workflow-architecture.git"
51
+ },
52
+ "dependencies": {
53
+ "@google/generative-ai": "^0.24.1",
54
+ "@prisma/client": "^6.19.2",
55
+ "commander": "^14.0.3",
56
+ "cors": "^2.8.6",
57
+ "dotenv": "^17.2.4",
58
+ "express": "^5.2.1",
59
+ "uuid": "^9.0.0",
60
+ "zod": "^3.23.0"
61
+ },
62
+ "devDependencies": {
63
+ "@types/cors": "^2.8.19",
64
+ "@types/express": "^5.0.6",
65
+ "@types/node": "^20.0.0",
66
+ "@types/uuid": "^9.0.0",
67
+ "@typescript-eslint/eslint-plugin": "^7.0.0",
68
+ "@typescript-eslint/parser": "^7.0.0",
69
+ "eslint": "^8.56.0",
70
+ "prisma": "^6.19.2",
71
+ "tsup": "^8.0.0",
72
+ "typescript": "^5.4.0",
73
+ "vitest": "^1.0.0"
74
+ },
75
+ "peerDependencies": {
76
+ "typescript": ">=5.0.0"
77
+ },
78
+ "engines": {
79
+ "node": ">=18.0.0"
80
+ }
81
+ }