-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 4.68 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 4.68 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "daytona",
"version": "0.0.0-dev",
"license": "SEE LICENSE IN LICENSE",
"private": true,
"scripts": {
"postinstall": "is-ci || husky",
"format": "nx run-many --target=format --all --parallel=$(getconf _NPROCESSORS_ONLN) && prettier --write \"*.{ts,js,json,yaml}\" && markdownlint-cli2 \"**/*.{mdx,md}\" --fix && yarn format:py",
"format:py": "isort sdk-python examples/python --skip-glob \"**/*api-client-python*/**\" --skip-glob \"**/.venv/**\" && nbqa isort examples/jupyter && black sdk-python examples --extend-exclude '(^|/)(.*api-client-python.*|\\.venv)(/|$)'",
"lint": "yarn lint:ts && yarn lint:py",
"lint:ts": "eslint \"{cli,sdk-*,examples}/**/*.{ts,tsx}\"",
"lint:py": "pylint sdk-python examples/python --recursive=y -sn && nbqa pylint examples/jupyter --recursive=y -sn && basedpyright",
"lint:fix": "eslint \"{cli,sdk-*,examples}/**/*.{ts,tsx}\" --fix",
"test": "nx run-many --target=test --all --nxBail=true",
"test:e2e": "nx run-many --target=test:e2e --all --nxBail=true",
"build": "nx run-many --target=build --all --parallel=$(getconf _NPROCESSORS_ONLN) --configuration=development",
"build:production": "nx run-many --target=build --all --parallel=$(getconf _NPROCESSORS_ONLN) --configuration=production --nxBail=true",
"generate:api-client": "nx run-many --target=generate:api-client --all --parallel=$(getconf _NPROCESSORS_ONLN)",
"docs": "nx run-many --target=docs --projects=sdk-typescript,sdk-python,sdk-ruby,sdk-java,sdk-go --parallel=$(getconf _NPROCESSORS_ONLN)",
"publish": "nx run-many --target=publish --exclude=sdk-go --all",
"prepare-release": "nx run-many --target=prepare-release --all",
"sdk-docs:archive": "tar -czf sdk-docs-${VERSION:-dev}.tar.gz -C artifacts sdk-docs"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1101.0",
"@aws-sdk/lib-storage": "^3.1101.0",
"@iarna/toml": "^2.2.5",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/exporter-trace-otlp-http": "^0.221.0",
"@opentelemetry/instrumentation-http": "^0.221.0",
"@opentelemetry/sdk-node": "^0.221.0",
"@opentelemetry/sdk-trace-base": "^2.10.0",
"@opentelemetry/semantic-conventions": "^1.43.0",
"axios": "^1.19.0",
"busboy": "^1.0.0",
"dotenv": "^17.4.2",
"expand-tilde": "^2.0.2",
"fast-glob": "^3.3.0",
"form-data": "^4.0.4",
"isomorphic-ws": "^5.0.0",
"pathe": "^2.0.3",
"shell-quote": "^1.8.2",
"socket.io-client": "^4.8.1",
"tar": "^7.5.22",
"tslib": "^2.8.1",
"ws": "^8.21.2"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@eslint/js": "^10.0.1",
"@nx-go/nx-go": "^4.1.1",
"@nx/eslint-plugin": "23.1.1",
"@nx/jest": "23.1.1",
"@nx/js": "23.1.1",
"@nx/react": "23.1.1",
"@nx/webpack": "23.1.1",
"@nx/workspace": "23.1.1",
"@openapitools/openapi-generator-cli": "^2.40.1",
"@swc-node/register": "~1.12.1",
"@swc/core": "~1.15.47",
"@swc/helpers": "~0.5.23",
"@types/busboy": "^1.0.0",
"@types/jest": "30.0.0",
"@types/node": "^22.20.1",
"@types/shell-quote": "^1.7.5",
"@types/tar": "^7.0.87",
"eslint": "^10.8.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"fix-esm-import-path": "^1.10.3",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"jest": "30.4.2",
"jest-environment-node": "^30.4.1",
"jest-util": "30.4.1",
"jiti": "2.7.0",
"jsonc-eslint-parser": "^3.1.0",
"lint-staged": "^17.3.0",
"markdownlint-cli2": "^0.23.2",
"nx": "23.1.1",
"prettier": "^3.9.6",
"ts-jest": "29.4.12",
"ts-node": "10.9.2",
"tsx": "^4.23.5",
"typedoc": "~0.28.20",
"typedoc-plugin-markdown": "~4.12.0",
"typedoc-plugin-merge-modules": "~7.0.0",
"typescript": "5.8.3",
"typescript-eslint": "^8.65.0",
"verdaccio": "6.9.2"
},
"packageManager": "yarn@4.13.0",
"nx": {
"includedScripts": []
},
"lint-staged": {
"!(*api-client*/**/*)*.{ts,tsx,astro}": [
"eslint --cache --fix",
"prettier --write"
],
"!(*api-client-go*/**/*)*.go": [
"gofmt -w"
],
"!(*api-client-ruby*/**/*)*.rb": [
"bundle exec rubocop -a --fail-level fatal"
],
"*.{mdx,md}": [
"markdownlint-cli2 --fix"
],
"!(*api-client-python*/**/*|sdk-python/tests/**/*)*.py": [
"isort",
"black --config pyproject.toml",
"pylint -sn",
"env -u LD_LIBRARY_PATH basedpyright"
],
"sdk-python/tests/**/*.py": [
"isort",
"black --config pyproject.toml"
],
"*.ipynb": [
"nbqa isort",
"black --config pyproject.toml",
"nbqa pylint -sn",
"env -u LD_LIBRARY_PATH basedpyright"
]
}
}