forked from e2b-dev/code-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
17 lines (17 loc) · 693 Bytes
/
package.json
File metadata and controls
17 lines (17 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"name": "@e2b/code-interpreter-python",
"private": true,
"version": "2.4.1",
"packageManager": "pnpm@9.15.5",
"scripts": {
"test": "poetry run pytest -n 4 --verbose -x",
"example": "poetry run python3 example.py",
"async-example": "poetry run python3 async_example.py",
"postVersion": "poetry version $(pnpm pkg get version --workspaces=false | tr -d \\\")",
"postPublish": "poetry build && poetry config pypi-token.pypi ${PYPI_TOKEN} && poetry publish --skip-existing",
"pretest": "poetry install",
"generate-ref": "poetry install && ./scripts/generate_sdk_ref.sh",
"lint": "poetry run ruff check .",
"format": "poetry run ruff format ."
}
}