-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.72 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
{
"name": "sandbox-runtime-api",
"version": "0.1.0",
"private": true,
"description": "A provider-neutral runtime contract for isolated AI agent execution environments.",
"license": "Apache-2.0",
"homepage": "https://github.com/capa-cloud/sandbox-runtime-api#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/capa-cloud/sandbox-runtime-api.git"
},
"bugs": {
"url": "https://github.com/capa-cloud/sandbox-runtime-api/issues"
},
"keywords": [
"agent",
"sandbox",
"runtime",
"provider",
"conformance"
],
"type": "module",
"bin": {
"sandbox-runtime": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"README.zh-CN.md",
"LICENSE",
"CHANGELOG.md",
"spec/openapi.yaml"
],
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test && pnpm docs:check && pnpm build && pnpm test:coverage && pnpm pack:check",
"docs:check": "node scripts/check-docs.mjs",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint .",
"pack:check": "pnpm build && pnpm pack --dry-run",
"sanitize": "bash scripts/scan-public.sh .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc -p tsconfig.tests.json --noEmit"
},
"devDependencies": {
"@biomejs/biome": "2.5.11",
"@types/node": "22.20.1",
"@vitest/coverage-v8": "4.1.11",
"typescript": "7.0.2",
"vitest": "4.1.11",
"yaml": "2.9.0"
}
}