-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 921 Bytes
/
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
{
"name": "react-matomo",
"version": "0.0.6",
"description": "",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs"
},
"author": "Anthony DI STEFANO",
"homepage": "https://github.com/MADEiN83/react-matomo",
"bugs": {
"url": "https://github.com/MADEiN83/react-matomo/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MADEiN83/react-matomo"
},
"license": "ISC",
"keywords": [
"react",
"analytics",
"matomo",
"react-matomo"
],
"devDependencies": {
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.6",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": ">= 16.8.0"
},
"files": [
"/lib"
],
"dependencies": {}
}