-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.08 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "runcycles",
"version": "0.3.1",
"description": "TypeScript AI agent runtime control — enforce LLM cost limits, action permissions, and audit trails for agents before execution.",
"license": "Apache-2.0",
"author": "runcycles",
"repository": {
"type": "git",
"url": "https://github.com/runcycles/cycles-client-typescript.git"
},
"homepage": "https://runcycles.io",
"bugs": {
"url": "https://github.com/runcycles/cycles-client-typescript/issues"
},
"keywords": [
"ai-agent",
"agent-budget",
"agent-governance",
"budget-control",
"cost-control",
"cost-enforcement",
"spending-limit",
"llm-cost",
"runtime-authority",
"action-control",
"action-authority",
"audit-trail",
"audit",
"compliance",
"multi-tenant",
"langchain",
"langgraph",
"openai-agents",
"vercel-ai-sdk",
"mcp",
"openai",
"anthropic",
"typescript-sdk",
"nodejs",
"cycles",
"runcycles"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsup",
"lint": "eslint src/",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
"prepublishOnly": "npm run lint && npm run build"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitest/coverage-v8": "^4.1.0",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"eslint": "^10.0.3",
"tsup": "^8.0.0",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vitest": "^4.1.0",
"yaml": "^2.8.3"
}
}