-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.12 KB
/
package.json
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
{
"name": "@bring-it/sentry",
"version": "0.6.0",
"description": "Update sentry artifacts",
"license": "MIT",
"author": {
"name": "Eric Chen",
"email": "[email protected]"
},
"keywords": [
"bring-it",
"ci",
"cli",
"code",
"release",
"sentry",
"sourcemap",
"sourcemaps"
],
"homepage": "https://github.com/airkro/bring-it/tree/master/packages/sentry",
"repository": {
"type": "git",
"url": "https://github.com/airkro/bring-it.git",
"directory": "packages/sentry"
},
"bugs": {
"url": "https://github.com/airkro/bring-it/issues"
},
"bin": {
"bring-it": "dist/bin.mjs"
},
"main": "dist/sub.mjs",
"files": [
"dist"
],
"type": "module",
"scripts": {
"build": "best-shot prod",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"globby": "catalog:"
},
"devDependencies": {
"@npmcli/promise-spawn": "^8.0.2"
},
"peerDependencies": {
"@bring-it/cli": "workspace:~"
},
"engines": {
"node": ">=22.11.0 || ^20.18.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}