-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.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
66
67
68
69
70
71
72
73
74
75
{
"name": "e2b",
"private": true,
"scripts": {
"version": "pnpm changeset version && pnpm run -r postVersion",
"publish": "pnpm --dir packages/js-sdk build && pnpm run -r postPublish && pnpm changeset publish",
"publish:python-sdk": "sh .github/scripts/publish_python_sdk.sh",
"test:release": "node --test .github/scripts/release.test.cjs",
"test": "pnpm --dir packages/js-sdk build && pnpm --recursive --if-present run test",
"rm-node-modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"pnpm-install-hack": "cd packages/js-sdk && sed -i '' 's/\"version\": \".*\"/\"version\": \"9.9.9\"/g' package.json && cd ../.. && pnpm i && git checkout -- packages/js-sdk/package.json",
"fetch:api-spec": "./scripts/fetch-spec.sh api-spec",
"fetch:envd-spec": "./scripts/fetch-spec.sh envd-spec",
"fetch:volume-spec": "./scripts/fetch-spec.sh volume-api-spec",
"lint": "pnpm --if-present --recursive run lint",
"typecheck": "pnpm --dir packages/js-sdk build && pnpm --if-present --recursive run typecheck",
"format": "pnpm --if-present --recursive run format",
"changeset": "changeset"
},
"packageManager": "pnpm@10.34.5",
"dependencies": {
"@changesets/read": "^0.6.2"
},
"devDependencies": {
"@changesets/cli": "2.31.1",
"@cloudflare/vitest-pool-workers": "^0.18.7",
"@types/node": "catalog:",
"dotenv": "^16.4.5",
"oxlint": "^1.78.0",
"prettier": "^3.6.2",
"tsdown": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"engines": {
"pnpm": ">=10.16.0 <11"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"workerd"
],
"ignoredBuiltDependencies": [
"bufferutil",
"msw",
"utf-8-validate"
],
"overrides": {
"rollup@>=4": ">=4.59.0",
"postcss@<8.5.10": "^8.5.10",
"vite@>=6.0.0 <6.4.3": "^6.4.3",
"lodash@<4.18.0": "^4.18.0",
"brace-expansion@<1.1.18": "^1.1.18",
"brace-expansion@>=2.0.0 <2.1.4": "^2.1.4",
"brace-expansion@>=3.0.0 <3.0.6": "^3.0.6",
"brace-expansion@>=4.0.0 <5.0.9": "^5.0.9",
"underscore@<1.13.8": "^1.13.8",
"js-yaml@<3.15.1": "^3.15.1",
"js-yaml@>=4.0.0 <4.3.1": "^4.3.1",
"@babel/core@<7.29.6": "^7.29.6",
"picomatch@<2.3.2": "^2.3.2",
"picomatch@>=4.0.0 <4.0.4": "^4.0.4",
"smol-toml@<1.6.1": "^1.6.1",
"minimatch@<3.1.3": "^3.1.3",
"minimatch@>=5.0.0 <5.1.8": "^5.1.8",
"minimatch@>=9.0.0 <9.0.7": "^9.0.7",
"minimatch@>=10.0.0 <10.2.3": "^10.2.3",
"undici@>=7.0.0 <7.29.0": "^7.29.0",
"ws@>=8.0.0 <8.20.1": "^8.20.1",
"shell-quote@<1.9.0": "^1.9.0",
"sharp@<0.35.0": "^0.35.0",
"tar@<7.5.19": "^7.5.19"
}
}
}