-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.81 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
{
"name": "@buddy-works/sandbox-sdk",
"version": "0.1.8",
"type": "module",
"description": "TypeScript SDK for managing sandboxes through the Buddy API",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"fetch:schemas": "dotenvx run -q -- openapi-ts",
"build": "tsdown",
"test": "NODE_OPTIONS='--enable-source-maps' dotenvx run -q -- vitest run",
"test:watch": "NODE_OPTIONS='--enable-source-maps' dotenvx run -q -- vitest",
"lint:check": "tsc --skipLibCheck --noEmit && biome check",
"lint:fix": "tsc --skipLibCheck --noEmit && biome check --write",
"knip": "knip"
},
"keywords": [
"sandbox",
"api",
"sdk",
"ci",
"cd",
"devops",
"cloud",
"typescript"
],
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"sideEffects": false,
"author": "Cyprian Zdebski <cyprian.zdebski@buddy.works>",
"homepage": "https://github.com/buddy/sandbox-sdk#readme",
"bugs": "https://github.com/buddy/sandbox-sdk/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/buddy/sandbox-sdk.git"
},
"license": "MIT",
"packageManager": "pnpm@10.28.0",
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@buddy-works/unit-tests": "0.21.2",
"@dotenvx/dotenvx": "catalog:",
"@hey-api/openapi-ts": "0.97.2",
"@tsconfig/node20": "catalog:",
"@tsconfig/strictest": "catalog:",
"@types/node": "catalog:",
"knip": "5.81.0",
"msw": "2.12.7",
"tsdown": "0.20.0-beta.3",
"tsx": "catalog:",
"typescript": "catalog:",
"vitest": "4.0.17"
},
"dependencies": {
"p-retry": "7.1.1",
"zod": "4.3.5"
}
}