-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 936 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 936 Bytes
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
{
"name": "rn-release-automator",
"version": "0.1.0",
"description": "CLI tool to automate the React Native release process",
"type": "module",
"bin": {
"rn-release-automator": "./dist/index.js"
},
"files": [
"dist/"
],
"scripts": {
"dev": "flow-remove-types src/ -d dist/ --all && node dist/index.js",
"build": "flow-remove-types src/ -d dist/ --all",
"prepublishOnly": "flow-remove-types src/ -d dist/ --all",
"start": "node dist/index.js",
"flow": "flow",
"typecheck": "flow check"
},
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"@octokit/rest": "^21.0.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ora": "^8.1.0"
},
"devDependencies": {
"flow-bin": "^0.252.0",
"flow-remove-types": "^2.252.0",
"@babel/core": "^7.24.0",
"@babel/node": "^7.23.0",
"@babel/preset-flow": "^7.24.0"
},
"engines": {
"node": ">=18.0.0"
}
}