-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.31 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@tiny-agent/tiny-agent-runtime",
"version": "0.0.1",
"description": "Standalone runtime for agent providers and loop orchestration",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pumpkinredbean/tiny-agent-runtime.git"
},
"homepage": "https://github.com/pumpkinredbean/tiny-agent-runtime#readme",
"bugs": {
"url": "https://github.com/pumpkinredbean/tiny-agent-runtime/issues"
},
"keywords": [
"agent",
"ai",
"llm",
"copilot",
"codex",
"runtime",
"bun"
],
"packageManager": "bun@1.3.5",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"tart": "bin/tart"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "rm -rf dist && bunx tsc -p tsconfig.build.json && chmod +x dist/cli/tart.js",
"login:codex": "bun run src/cli/tart.ts login codex",
"login:copilot": "bun run src/cli/tart.ts login copilot",
"prepack": "bun run build",
"typecheck": "bunx tsc -p tsconfig.json --noEmit",
"test": "bun test src examples",
"validate:live:copilot:multiturn": "bun run scripts/live-copilot-multiturn.ts",
"validate:live:codex:loop": "bun run scripts/live-codex-loop.ts",
"sample": "bun run examples/browser-sample/server.ts"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./auth": {
"types": "./dist/auth/contracts.d.ts",
"import": "./dist/auth/contracts.js",
"default": "./dist/auth/contracts.js"
},
"./auth/store": {
"types": "./dist/auth/store.d.ts",
"import": "./dist/auth/store.js",
"default": "./dist/auth/store.js"
},
"./providers/copilot": {
"types": "./dist/providers/copilot/index.d.ts",
"import": "./dist/providers/copilot/index.js",
"default": "./dist/providers/copilot/index.js"
},
"./providers/codex": {
"types": "./dist/providers/codex/index.d.ts",
"import": "./dist/providers/codex/index.js",
"default": "./dist/providers/codex/index.js"
}
},
"engines": {
"bun": ">=1.3.5"
},
"devDependencies": {
"@types/bun": "1.3.11",
"@types/node": "22.13.9",
"typescript": "5.8.2"
}
}