-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.82 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
{
"name": "@smolpaws/openhands-agent",
"version": "0.3.4",
"description": "Idiomatic TypeScript transpilation of the OpenHands Python agent-sdk.",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"examples",
"docs",
"transpile"
],
"scripts": {
"build": "npm run build:bundle && npm run build:types",
"build:bundle": "tsup --config tsup.config.ts",
"build:types": "tsc -p tsconfig.json",
"drift": "tsx scripts/drift/cli.ts",
"drift:scan": "tsx scripts/drift/cli.ts scan",
"drift:prepare": "tsx scripts/drift/cli.ts prepare",
"drift:check": "tsx scripts/drift/cli.ts check",
"lint": "eslint ./src ./scripts/parity",
"live:llm": "npm run build && node scripts/live/llm-smoke.mjs",
"live:openai-tools": "npm run build && tsx examples/native-openai-tools.ts",
"live:gemini-tools": "npm run build && tsx examples/native-gemini-tools.ts",
"live:openai-responses-reasoning": "npm run build && tsx scripts/live/openai-responses-reasoning.ts",
"live:anthropic-cache-smoke": "npm run build && tsx scripts/live/anthropic-cache-smoke.ts",
"live:provider-smokes": "npm run live:openai-responses-reasoning && npm run live:anthropic-cache-smoke",
"typecheck": "tsc -p tsconfig.json --noEmit",
"typecheck:drift": "tsc -p tsconfig.drift.json --noEmit",
"test": "vitest run",
"test:drift": "node --import tsx --test scripts/drift/drift.node-test.ts",
"test:examples": "npm run build && for f in examples/*.ts; do echo \"Running $f\"; tsx \"$f\" || exit 1; done",
"typecheck:examples": "tsc --noEmit --target ES2022 --module ESNext --moduleResolution bundler --strict --skipLibCheck examples/*.ts",
"typecheck:live": "tsc --noEmit --target ES2022 --module ESNext --moduleResolution bundler --strict --skipLibCheck scripts/live/*.ts",
"drift:render": "tsx scripts/drift/render-review.ts"
},
"dependencies": {
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22.18.6",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.36.0",
"globals": "^15.0.0",
"tsup": "^8.3.0",
"tsx": "^4.22.4",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/smolpaws/openhands-agent.git"
},
"bugs": {
"url": "https://github.com/smolpaws/openhands-agent/issues"
},
"homepage": "https://github.com/smolpaws/openhands-agent#readme",
"publishConfig": {
"access": "public"
},
"overrides": {
"esbuild": "^0.28.1"
}
}