-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 802 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 802 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
{
"name": "react-ga4",
"version": "3.0.1",
"description": "React Google Analytics 4",
"type": "module",
"types": "dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"files": [
".github/FUNDING.yml",
"src",
"dist"
],
"scripts": {
"build": "tsdown",
"prepublishOnly": "npm run build && npm test -- run",
"test": "vitest"
},
"author": "Han Lin Yap (https://yap.nu)",
"license": "MIT",
"keywords": [
"GA",
"GTM",
"Google Analytics",
"Google Analytics 4",
"Google Tag Manager"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codler/react-ga4.git"
},
"devDependencies": {
"tsdown": "0.21.4",
"typescript": "5.9.3",
"vitest": "4.1.1"
}
}