-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "@mbinjamil/matomo-client",
"version": "0.3.3",
"description": "A thin wrapper around Matomo analytics",
"keywords": [
"matomo",
"tracking",
"analytics",
"javascript",
"react"
],
"homepage": "https://github.com/binjamil/matomo-client",
"bugs": {
"url": "https://github.com/binjamil/matomo-client/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/binjamil/matomo-client.git"
},
"license": "MIT",
"author": "Muhammad Bin Jamil",
"files": [
"dist/matomo-client.cjs.js",
"dist/matomo-client.esm.js",
"dist/index.d.ts"
],
"main": "dist/matomo-client.cjs.js",
"module": "dist/matomo-client.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "pnpm build:types && pnpm build:js",
"build:js": "node build.mjs",
"build:types": "tsc --emitDeclarationOnly",
"release": "pnpm build && pnpm changeset publish",
"typecheck": "tsc --noEmit",
"docs": "typedoc src/index.ts --readme none"
},
"devDependencies": {
"@changesets/cli": "^2.27.2",
"esbuild": "^0.21.3",
"prettier": "^3.2.5",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^4.0.2",
"typescript": "^5.4.5"
}
}