-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.17 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.17 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
{
"name": "react-native-file-logger",
"title": "React Native File Logger",
"version": "0.7.2",
"description": "A simple file-logger for React Native",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"files": [
"README.md",
"android",
"ios",
"dist",
"src",
"RNFileLogger.podspec"
],
"scripts": {
"build": "rimraf dist && tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BeTomorrow/react-native-file-logger.git",
"baseUrl": "https://github.com/BeTomorrow/react-native-file-logger"
},
"homepage": "https://github.com/BeTomorrow/react-native-file-logger#readme",
"keywords": [
"react-native"
],
"author": "BeTomorrow <aguichard@betomorrow.com> (https://github.com/BeTomorrow)",
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": ">=16.0.0",
"react-native": ">=0.60.0"
},
"devDependencies": {
"@babel/preset-env": "^7.26.9",
"@release-it/conventional-changelog": "^10.0.0",
"prettier": "^3.5.3",
"react": "^19.1.0",
"react-native": "0.79.1",
"release-it": "^18.1.2",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
},
"dependencies": {
"util": "^0.12.5"
},
"codegenConfig": {
"name": "FileLoggerSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.betomorrow.rnfilelogger"
}
},
"release-it": {
"hooks": {
"before:init": [
"npm run build"
]
},
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "✨ Features"
},
{
"type": "fix",
"section": "🐛 Bug Fixes"
},
{
"type": "chore(deps)",
"section": "🛠️ Dependency Upgrades"
},
{
"type": "chore",
"section": "🧹 Chore"
},
{
"type": "docs",
"section": "📚 Documentation"
}
]
}
}
}
}
}