-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.55 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
{
"name": "matomo-tracker-for-react",
"version": "2.2.0",
"description": "A minimal yet powerful React package that integrates Matomo analytics with any React router.",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.json --module commonjs --outDir lib",
"build:esm": "tsc -p tsconfig.json --module esnext --outDir es",
"test": "npm run build && node --test tests/*.test.js",
"test:e2e": "node --test tests/e2e/*.test.js",
"pretest": "npm run build",
"clean": "rm -rf lib es *.tsbuildinfo",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"matomo",
"react",
"analytics",
"tracking",
"react-router"
],
"author": "Jonas Kenke",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/JonasKenke/matomo-tracker-for-react.git"
},
"bugs": {
"url": "https://github.com/JonasKenke/matomo-tracker-for-react/issues"
},
"homepage": "https://github.com/JonasKenke/matomo-tracker-for-react#readme",
"files": [
"lib",
"es"
],
"exports": {
".": {
"import": "./es/index.js",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"puppeteer-core": "^25.5.0",
"typescript": "^5.0.0"
},
"sideEffects": false
}