-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.45 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.45 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": "@buildkite/buildkite-sdk",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"agent:local": "buildkite-agent start --token $BUILDKITE_AGENT_TOKEN_LOCAL_BUILDKITE_SDK",
"postinstall": "nx install:all --verbose",
"pipeline": "nx gen:pipeline",
"pipeline-release": "nx gen:pipeline-release",
"types": "nx gen:types",
"types-go": "nx gen:types-go",
"types-py": "nx gen:types-python",
"types-ts": "nx gen:types-typescript",
"test": "nx test:all",
"build": "nx build:all",
"docs": "nx docs:all",
"docs:serve": "nx run-many --parallel --target 'docs:serve' --projects 'sdk-typescript,sdk-python,sdk-ruby' --output-style 'stream'",
"docs:publish": "nx docs:publish",
"apps": "nx run:all",
"publish": "nx publish:all",
"clean": "nx clean:all",
"watch": "npx nx watch --all -- nx rebuild:all",
"format": "npx nx format:all",
"dev": "concurrently 'npm run docs:serve' 'npm run watch' --kill-others",
"release:create-branch": "npx nx release:create-branch"
},
"private": true,
"devDependencies": {
"@eslint/js": "^10.0.0",
"@nx/esbuild": "22.5.4",
"@nx/eslint": "22.5.4",
"@nx/eslint-plugin": "22.5.4",
"@nx/jest": "22.5.4",
"@nx/js": "22.5.4",
"@nx/node": "22.5.4",
"@nx/web": "22.5.4",
"@swc-node/register": "~1.11.0",
"@swc/core": "~1.15.0",
"@swc/helpers": "~0.5.11",
"@types/jest": "30.0.0",
"@types/node": "24.12.0",
"ajv": "^8.17.1",
"esbuild": "^0.27.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "10.1.8",
"jest": "30.3.0",
"jest-environment-node": "^30.0.0",
"jest-util": "30.3.0",
"json-schema-to-typescript": "^15.0.3",
"mustache": "^4.2.0",
"nx": "22.5.4",
"prettier": "^3.0.0",
"replace-in-file": "^8.3.0",
"simple-git": "^3.27.0",
"ts-jest": "^29.4.5",
"toml": "^3.0.0",
"ts-node": "10.9.2",
"tslib": "^2.3.0",
"typedoc": "^0.28.14",
"typescript": "5.9.3",
"typescript-eslint": "8.57.1",
"yaml": "^2.7.0"
},
"workspaces": [
"apps/**",
"sdk/**",
"infra",
"ci"
],
"dependencies": {
"@octokit/rest": "^22.0.0",
"axios": "^1.13.5",
"rimraf": "^6.1.2"
}
}