-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 978 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 978 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
{
"name": "react-logsnag",
"version": "1.0.3",
"description": "LogSnag tracker for react projects",
"scripts": {
"build": "tsc --declaration",
"format": "prettier --write '**/*.{js,jsx,ts,tsx}'"
},
"devDependencies": {
"@types/react": "^18.2.6",
"logsnag": "^0.1.8",
"prettier": "^2.7.1",
"react": "^18.2.0",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"peerDependencies": {
"logsnag": ">= 0.1.8",
"react": ">= 16.8.0",
"react-dom": "^17.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"author": "Félix Legrelle",
"homepage": "https://github.com/felixlgr/react-logsnag#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/felixlgr/react-logsnag.git"
},
"bugs": {
"url": "https://github.com/felixlgr/react-logsnag/issues"
},
"keywords": [
"logsnag",
"react",
"tracking",
"analytics"
]
}