-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.44 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.44 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
{
"name": "@beaverfy/builder",
"packageManager": "yarn@3.5.0",
"version": "1.3.3",
"main": "build/index.js",
"types": "build/index.d.ts",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"bin": {
"builder": "build/index.js"
},
"repository": "https://github.com/beaverfy/builder/",
"homepage": "https://github.com/beaverfy/builder/",
"author": "Turtlepaw <turtlepaw.developer@outlook.com> https://trtle.vercel.app/",
"license": "Apache-2.0",
"keywords": [
"expo",
"react-native",
"builder",
"beaverfy"
],
"dependencies": {
"@react-native-community/cli-config": "13.5.1-alpha.0",
"@react-native-community/cli-platform-android": "13.5.1-alpha.0",
"@react-native-community/cli-platform-apple": "13.5.1-alpha.0",
"@react-native-community/cli-platform-ios": "13.5.1-alpha.0",
"@react-native-community/cli-tools": "13.5.1-alpha.0",
"ansi-colors": "^4.1.3",
"enquirer": "^2.4.1",
"ora": "^5.4.1",
"yaml": "^2.2.1"
},
"scripts": {
"prepare": "yarn run clean && tsc",
"release": "dotenv release-it",
"clean": "rm -rf ./build && rm tsconfig.tsbuildinfo",
"start": "node ./build/index.js"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"@types/js-yaml": "^4.0.9",
"@types/mv": "^2.1.4",
"dotenv-cli": "^7.3.0",
"release-it": "^17.0.1",
"typescript": "^5.3.3"
}
}