-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.24 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
{
"name": "@nodeops-createos/sandbox",
"version": "0.8.1",
"description": "TypeScript SDK for CreateOS Sandbox.",
"keywords": [
"ai-agents",
"compute",
"createos",
"createos-sandbox",
"isolated-sandbox",
"runtime",
"sandbox",
"sdk"
],
"homepage": "https://createos.sh",
"bugs": {
"url": "https://github.com/NodeOps-app/createos-sandbox-sdk/issues"
},
"license": "MIT",
"author": "NodeOps Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/NodeOps-app/createos-sandbox-sdk.git"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"typecheck:tests": "tsc -p tsconfig.test.json",
"typecheck:examples": "tsc -p examples/tsconfig.json",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"fmt": "oxfmt . '!**/*.md'",
"fmt:check": "oxfmt --check . '!**/*.md'",
"test": "bun test tests/*.test.ts",
"test:watch": "bun test --watch tests/*.test.ts",
"docs:api": "typedoc --entryPoints src/index.ts --out docs/api-reference --githubPages false --hideGenerator",
"docs:gen": "bun scripts/gen-docs.mjs",
"docs:check": "bun scripts/gen-docs.mjs --check",
"docs:verify": "bun run docs:api && bun run docs:check",
"prepack": "bun run build",
"pack:dry": "npm pack --dry-run",
"publish:check": "npm whoami && bun run pack:dry",
"prepublishOnly": "bun run test && bun run typecheck && bun run typecheck:tests && bun run docs:verify",
"publish:dry": "bun run publish:check && npm publish --dry-run",
"publish:npm": "bun run publish:check && npm publish"
},
"devDependencies": {
"@types/bun": "1.3.14",
"oxfmt": "^0.54.0",
"oxlint": "^1.74.0",
"typedoc": "0.28.19",
"typescript": "^6.0.3"
},
"optionalDependencies": {
"@types/node": "26.1.1",
"undici": "^7.28.0"
},
"engines": {
"node": ">=20"
}
}