safeloop 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,46 @@
1
+ {
2
+ "name": "safeloop",
3
+ "version": "0.1.0",
4
+ "description": "Safeloop is a lightweight governance SDK for local AI agent loops with policy gates, circuit breakers, action ledgers, markdown reports, and live simulations.",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/czeller81/safeloop.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/czeller81/safeloop/issues"
13
+ },
14
+ "homepage": "https://github.com/czeller81/safeloop#readme",
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsc",
20
+ "test": "jest --config jest.config.js",
21
+ "example": "ts-node examples/wrap-agent.ts",
22
+ "example:live-simulation": "ts-node examples/breaker-live-simulation.ts",
23
+ "prepare": "npm run build"
24
+ },
25
+ "keywords": [
26
+ "ai-agents",
27
+ "agentic-ai",
28
+ "ai-governance",
29
+ "circuit-breaker",
30
+ "policy-gate",
31
+ "agent-ops",
32
+ "local-ai",
33
+ "observability",
34
+ "audit-trail",
35
+ "typescript"
36
+ ],
37
+ "license": "MIT",
38
+ "devDependencies": {
39
+ "@types/jest": "^29.5.12",
40
+ "@types/node": "^20.11.0",
41
+ "jest": "^29.7.0",
42
+ "ts-jest": "^29.1.2",
43
+ "ts-node": "^10.9.2",
44
+ "typescript": "^5.3.3"
45
+ }
46
+ }