forked from danielgtmn/react-umami
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.02 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.02 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@danielgtmn/umami-react",
"version": "1.1.2",
"private": false,
"description": "The Umami Analytics Loader is a lightweight script that enables you to easily integrate Umami Analytics into your website. Umami is a simple, open-source website analytics tool that provides valuable insights into your website's traffic without compromising privacy.",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"package.json"
],
"homepage": "https://github.com/danielgtmn/react-umami#readme",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rimraf dist",
"format": "prettier --write src/**/*.{ts,tsx}",
"type-check": "tsc --noEmit",
"prepare": "husky install",
"release": "pnpm run build && changeset publish",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"analyze": "tsup --metafile && npx rollup-plugin-visualizer dist/meta.json",
"size": "size-limit",
"commitlint": "commitlint --edit"
},
"keywords": [
"React",
"Umami",
"Analytics"
],
"repository": {
"type": "git",
"url": "https://github.com/danielgtmn/react-umami.git"
},
"bugs": {
"url": "https://github.com/danielgtmn/react-umami/issues"
},
"author": "Daniel Gietmann <hello@danielgtmn.com>",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.29.6",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.34.0",
"@size-limit/file": "^11.2.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.3.0",
"@types/react": "^19.1.12",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"@vitejs/plugin-react": "^5.0.2",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.34.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"rimraf": "^6.0.1",
"rollup-plugin-visualizer": "^6.0.3",
"size-limit": "^11.2.0",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vite": "^7.1.5",
"vitest": "^3.2.4"
},
"peerDependencies": {
"react": "^18.2.0 || ^19.0.0",
"react-dom": "^18.2.0 || ^19.0.0"
},
"publishConfig": {
"access": "public"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}