-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 2.17 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
{
"name": "cwsandbox-js",
"version": "0.0.0",
"private": true,
"description": "CoreWeave Sandbox TypeScript SDK monorepo.",
"license": "Apache-2.0",
"author": "CoreWeave, Inc.",
"type": "module",
"scripts": {
"build": "pnpm --filter @coreweave/cwsandbox build",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "oxfmt --check .",
"format:fix": "oxfmt .",
"fix": "pnpm lint:fix && pnpm format:fix",
"example:tanstack": "pnpm --filter @coreweave/cwsandbox-tanstack build && pnpm --dir examples/tanstack start",
"example:tanstack:typecheck": "pnpm --filter @coreweave/cwsandbox-tanstack build && pnpm --dir examples/tanstack typecheck",
"example:weave": "pnpm --dir examples/weave start",
"example:weave:typecheck": "pnpm --dir examples/weave typecheck",
"package:tanstack:build": "pnpm --filter @coreweave/cwsandbox-tanstack build",
"package:tanstack:test": "pnpm --filter @coreweave/cwsandbox-tanstack test",
"package:tanstack:typecheck": "pnpm --filter @coreweave/cwsandbox-tanstack typecheck",
"proto:update": "pnpm --filter @coreweave/cwsandbox proto:update",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"smoke": "pnpm test:e2e",
"smoke:stress": "tsx scripts/stress-smoke.ts",
"typecheck": "pnpm --filter @coreweave/cwsandbox typecheck",
"test": "pnpm --filter @coreweave/cwsandbox test",
"test:package": "pnpm build && vitest run --config vitest.package.config.ts",
"test:readme": "vitest run --config vitest.readme.config.ts",
"test:types": "pnpm --filter @coreweave/cwsandbox test:types",
"check": "pnpm lint && pnpm format && pnpm typecheck && pnpm test && pnpm test:types && pnpm test:readme && pnpm test:package && pnpm example:weave:typecheck && pnpm package:tanstack:typecheck && pnpm package:tanstack:test && pnpm example:tanstack:typecheck"
},
"devDependencies": {
"@bufbuild/buf": "^1.72.0",
"@coreweave/cwsandbox": "workspace:*",
"@types/node": "^22.20.1",
"oxfmt": "^0.60.0",
"oxlint": "^1.75.0",
"tsx": "^4.23.1",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.33.2"
}