-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 997 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 997 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
40
41
{
"name": "@certible/use-matomo",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "1.1.0",
"description": "A typed framework agnostic wrapper for Matomo js including SPA tracking.",
"author": "Certible <oberreiter@certible.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/certible/use-matomo.git"
},
"bugs": {
"url": "https://github.com/certible/use-matomo/issues"
},
"homepage": "https://github.com/certible/use-matomo#readme",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf dist",
"test": "vitest",
"test:ci": "npm run build && vitest"
},
"keywords": [
"matomo",
"spa",
"analytics",
"tracking"
],
"devDependencies": {
"@vitest/browser": "^4.0.4",
"@vitest/browser-playwright": "^4.0.4",
"playwright": "^1.54.2",
"typescript": "^5.9.2",
"vitest": "^4.0.4"
}
}