Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 42 additions & 37 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,42 @@
"name": "@offlegacy/event-tracker",
"version": "1.0.3",
"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",
Comment thread
stakbucks marked this conversation as resolved.
"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"
},
Comment thread
stakbucks marked this conversation as resolved.
"sideEffects": false,
"type": "module",
"scripts": {
"clean": "rimraf dist",
"build": "pnpm clean && pnpm build:js && pnpm build:ts",
"build:js": "node scripts/build.js",
"build:ts": "pnpm tsc --emitDeclarationOnly",
"dev": "tsup --watch",
"build": "tsup",
"dev:docs": "cd docs && pnpm dev",
"test": "vitest --run",
"test:watch": "vitest",
Expand All @@ -15,21 +46,12 @@
"prepare": "husky",
"release": "pnpm build && npm publish"
},
"types": "./dist/types/index.d.ts",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"type": "module",
"packageManager": "pnpm@9.14.2",
"devDependencies": {
"@cspell/eslint-plugin": "^8.17.1",
"@eslint-react/eslint-plugin": "^1.22.1",
Expand All @@ -40,7 +62,6 @@
"@types/react": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
Expand All @@ -51,7 +72,7 @@
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vitest": "^2.1.8"
Expand All @@ -60,24 +81,8 @@
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/offlegacy/event-tracker.git"
},
"author": "@stakbucks <Hwang Taehwan>",
"license": "MIT",
"bugs": {
"url": "https://github.com/offlegacy/event-tracker/issues"
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/offlegacy/event-tracker#readme",
"keywords": [
"react",
"analytics",
"google-analytics",
"amplitude",
"logger",
"event tracking",
"tracker",
"tracking"
]
"packageManager": "pnpm@9.14.2"
}
Loading