-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.26 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
58
59
60
61
62
{
"name": "@bring-it/npm",
"version": "0.5.9",
"description": "Publish npm packages when needed",
"license": "MIT",
"author": {
"name": "Eric Chen",
"email": "[email protected]"
},
"keywords": [
"bring-it",
"ci",
"cli",
"deploy",
"deployment",
"frontend",
"npm",
"publish",
"registry",
"release"
],
"homepage": "https://github.com/airkro/bring-it/tree/master/packages/npm",
"repository": {
"type": "git",
"url": "https://github.com/airkro/bring-it.git",
"directory": "packages/npm"
},
"bugs": {
"url": "https://github.com/airkro/bring-it/issues"
},
"bin": {
"bring-it": "dist/bin.mjs"
},
"main": "dist/main.mjs",
"files": [
"dist"
],
"type": "module",
"scripts": {
"build": "best-shot prod",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"execa": "catalog:",
"ini": "catalog:",
"is-url": "^1.2.4",
"semver": "catalog:",
"validate-npm-package-name": "^5.0.1"
},
"peerDependencies": {
"@bring-it/cli": "workspace:~"
},
"engines": {
"node": ">=22.11.0 || ^18.20.5 || ^20.18.1",
"npm": "^10.5.0",
"pnpm": "^9.14.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}