-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.73 KB
/
package.json
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
{
"name": "react-gtm-hook",
"version": "0.0.1",
"description": "Easily manage the Google Tag Manager via Hook",
"author": "Devias",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/devias-io/react-gtm-hook.git"
},
"homepage": "https://github.com/devias-io/react-gtm-hook#readme",
"keywords": [
"react hook",
"google tag manager",
"gtm",
"gtm hook",
"react"
],
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.esm.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs.js"
}
}
},
"sideEffects": false,
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"clean": "rimraf dist",
"lint": "biome lint .",
"lint:fix": "biome check --apply .",
"format": "biome format .",
"format:fix": "biome format --write .",
"typecheck": "tsc --noEmit",
"prebuild": "pnpm run clean"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"react": "^19.0.0",
"rimraf": "^6.0.1",
"rollup": "^4.28.1",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
}