-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.98 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.98 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
{
"name": "@sentry/craft",
"version": "2.25.0-dev.0",
"description": "The universal sentry workflow CLI",
"main": "dist/craft",
"repository": "https://github.com/getsentry/craft",
"author": "Sentry",
"license": "MIT",
"bin": {
"craft": "dist/craft",
"sentry-craft": "dist/craft"
},
"devDependencies": {
"@aws-sdk/client-lambda": "^3.984.0",
"@eslint/js": "^9.17.0",
"@google-cloud/storage": "^7.14.0",
"@octokit/plugin-retry": "^7.1.2",
"@octokit/request-error": "^7.0.0",
"@octokit/rest": "^21.0.2",
"@sentry/esbuild-plugin": "^2.23.0",
"@sentry/node": "^10.27.0",
"@types/async": "^3.0.1",
"@types/aws4": "^1.5.1",
"@types/cli-table": "^0.3.0",
"@types/extract-zip": "^2.0.1",
"@types/git-url-parse": "^9.0.0",
"@types/is-ci": "^2.0.0",
"@types/js-yaml": "^4.0.5",
"@types/mkdirp": "^1.0.0",
"@types/node": "^22.10.1",
"@types/node-fetch": "^2.5.10",
"@types/ora": "^1.3.4",
"@types/prompts": "^2.0.11",
"@types/semver": "^7.7.1",
"@types/shell-quote": "^1.6.0",
"@types/tar": "^4.0.0",
"@types/tmp": "^0.0.33",
"@types/yargs": "^17",
"async": "3.2.2",
"aws4": "^1.11.0",
"chalk": "4.1.1",
"cli-table": "0.3.1",
"consola": "2.15.3",
"esbuild": "^0.25.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-github-annotations": "^0.1.0",
"extract-zip": "^2.0.1",
"fast-xml-parser": "^5.3.4",
"git-url-parse": "^16.1.0",
"glob": "^11.0.0",
"is-ci": "^2.0.0",
"js-yaml": "4.1.1",
"mkdirp": "^1.0.4",
"mustache": "3.0.1",
"nock": "^13.2.4",
"node-fetch": "^2.6.1",
"nvar": "1.3.1",
"ora": "5.4.0",
"prettier": "^3.4.2",
"prompts": "2.4.1",
"shell-quote": "1.7.3",
"simple-git": "^3.33.0",
"source-map-support": "^0.5.20",
"split": "1.0.1",
"string-length": "3.1.0",
"tar": "7.5.11",
"tmp": "0.2.4",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vitest": "^3.0.2",
"yargs": "^18",
"zod": "^3.24.1"
},
"scripts": {
"build:fat": "tsc -p tsconfig.build.json",
"build:watch": "tsc -p tsconfig.build.json --watch",
"build": "node build.mjs",
"precli": "pnpm build",
"cli": "node -r source-map-support/register dist/craft",
"clean": "rm -rf dist coverage",
"lint": "eslint --cache --cache-strategy content",
"fix": "pnpm lint --fix",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"docs:dev": "cd docs && pnpm dev",
"docs:build": "cd docs && pnpm build"
},
"volta": {
"node": "22.12.0",
"pnpm": "10.27.0"
},
"dependencies": {
"fastest-levenshtein": "^1.0.16",
"ignore": "^7.0.5",
"marked": "^17.0.1",
"p-limit": "^6.2.0",
"semver": "^7.7.3"
},
"pnpm": {
"overrides": {
"fast-xml-parser": "^5.3.4",
"minimatch": "^10.2.1",
"ajv@<6.14.0": "^6.14.0",
"rollup": "^4.59.0"
}
}
}