react-auto-tracking 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +17 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-auto-tracking",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Global user interaction tracking for React.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -21,20 +21,13 @@
|
|
|
21
21
|
"files": [
|
|
22
22
|
"dist"
|
|
23
23
|
],
|
|
24
|
-
"scripts": {
|
|
25
|
-
"build": "tsdown",
|
|
26
|
-
"test": "vitest run",
|
|
27
|
-
"test:watch": "vitest",
|
|
28
|
-
"test:coverage": "vitest run --coverage",
|
|
29
|
-
"lint": "oxlint src/",
|
|
30
|
-
"format": "oxfmt --write src/",
|
|
31
|
-
"format:check": "oxfmt --check src/",
|
|
32
|
-
"typecheck": "tsc --noEmit",
|
|
33
|
-
"check": "pnpm lint && pnpm format:check && pnpm typecheck"
|
|
34
|
-
},
|
|
35
24
|
"simple-git-hooks": {
|
|
36
25
|
"pre-push": "pnpm check"
|
|
37
26
|
},
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "https://github.com/jyunhanlin/react-auto-tracking.git"
|
|
30
|
+
},
|
|
38
31
|
"license": "MIT",
|
|
39
32
|
"engines": {
|
|
40
33
|
"node": ">=20"
|
|
@@ -56,5 +49,16 @@
|
|
|
56
49
|
"tsdown": "^0.20.3",
|
|
57
50
|
"typescript": "^5.9.3",
|
|
58
51
|
"vitest": "^4.0.18"
|
|
52
|
+
},
|
|
53
|
+
"scripts": {
|
|
54
|
+
"build": "tsdown",
|
|
55
|
+
"test": "vitest run",
|
|
56
|
+
"test:watch": "vitest",
|
|
57
|
+
"test:coverage": "vitest run --coverage",
|
|
58
|
+
"lint": "oxlint src/",
|
|
59
|
+
"format": "oxfmt --write src/",
|
|
60
|
+
"format:check": "oxfmt --check src/",
|
|
61
|
+
"typecheck": "tsc --noEmit",
|
|
62
|
+
"check": "pnpm lint && pnpm format:check && pnpm typecheck"
|
|
59
63
|
}
|
|
60
|
-
}
|
|
64
|
+
}
|