@decidio/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,83 @@
1
+ {
2
+ "name": "@decidio/sdk",
3
+ "version": "0.1.0",
4
+ "description": "One-line approval gate for AI-agent actions. Wrap a risky tool call with guard.protect(); Decidio's policy engine decides proceed | route | block, a human approves routed actions, and every outcome is sealed as a verifiable Authority Receipt.",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "types": "dist/index.d.ts",
8
+ "main": "dist/index.js",
9
+ "bin": {
10
+ "decidio": "dist/cli.js"
11
+ },
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/index.d.ts",
15
+ "default": "./dist/index.js"
16
+ },
17
+ "./resume": {
18
+ "types": "./dist/resume.d.ts",
19
+ "default": "./dist/resume.js"
20
+ },
21
+ "./inngest": {
22
+ "types": "./dist/inngest.d.ts",
23
+ "default": "./dist/inngest.js"
24
+ },
25
+ "./langgraph": {
26
+ "types": "./dist/adapters/langgraph.d.ts",
27
+ "default": "./dist/adapters/langgraph.js"
28
+ },
29
+ "./temporal": {
30
+ "types": "./dist/adapters/temporal.d.ts",
31
+ "default": "./dist/adapters/temporal.js"
32
+ },
33
+ "./openai": {
34
+ "types": "./dist/adapters/openai.d.ts",
35
+ "default": "./dist/adapters/openai.js"
36
+ }
37
+ },
38
+ "files": [
39
+ "dist",
40
+ "openapi.yaml",
41
+ "README.md",
42
+ "LICENSE"
43
+ ],
44
+ "engines": {
45
+ "node": ">=20"
46
+ },
47
+ "keywords": [
48
+ "ai-agents",
49
+ "approvals",
50
+ "human-in-the-loop",
51
+ "authority",
52
+ "audit",
53
+ "agent-governance",
54
+ "verifiable-credentials"
55
+ ],
56
+ "homepage": "https://decidioai.com/developers/",
57
+ "publishConfig": {
58
+ "access": "public"
59
+ },
60
+ "peerDependenciesMeta": {
61
+ "inngest": {
62
+ "optional": true
63
+ },
64
+ "@langchain/langgraph": {
65
+ "optional": true
66
+ },
67
+ "@temporalio/workflow": {
68
+ "optional": true
69
+ },
70
+ "@openai/agents": {
71
+ "optional": true
72
+ }
73
+ },
74
+ "devDependencies": {
75
+ "@types/node": "^22.20.1",
76
+ "typescript": "^5.9.3"
77
+ },
78
+ "scripts": {
79
+ "typecheck": "tsc --noEmit",
80
+ "build": "node -e \"fs.rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.build.json",
81
+ "prepublishOnly": "npm run typecheck && npm run build"
82
+ }
83
+ }