-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
92 lines (92 loc) · 2.41 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
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
{
"name": "@offlegacy/event-tracker",
"version": "1.2.1",
"description": "The best solution for event tracking in React applications.",
"keywords": [
"react",
"analytics",
"google-analytics",
"amplitude",
"logger",
"event tracking",
"tracker",
"tracking"
],
"homepage": "https://event-tracker.offlegacy.org",
"bugs": "https://github.com/offlegacy/event-tracker/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/offlegacy/event-tracker.git"
},
"license": "MIT",
"author": "@stakbucks <Hwang Taehwan>",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"dev:docs": "cd docs && pnpm dev",
"test": "vitest --run",
"test:watch": "vitest",
"lint": "eslint --cache --ignore-pattern=docs/** .",
"prepack": "pnpm build",
"prepare": "husky",
"release": "pnpm build && npm publish"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@cspell/eslint-plugin": "^8.17.1",
"@eslint-react/eslint-plugin": "^1.22.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/eslint": "^9.6.1",
"@types/react": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vitest": "^2.1.8"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"zod": "^3.20.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"zod": "^3.20.0"
},
"packageManager": "[email protected]"
}