-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 969 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 969 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
38
39
40
41
42
43
44
{
"name": "rn-devlog",
"version": "0.1.0-beta.4",
"description": "Stream Android & iOS device logs for React Native apps",
"type": "module",
"bin": {
"rn-devlog": "./dist/bin/rn-devlog.js"
},
"files": [
"dist"
],
"keywords": [
"react-native",
"logcat",
"ios",
"android",
"logs",
"devtools"
],
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vitest": "^2.0.0"
},
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint --fix . && prettier --write ."
}
}