-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.22 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.22 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
{
"name": "@prezly/analytics-nextjs",
"version": "4.3.0",
"description": "Prezly Analytics package for Next.js",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"clean": "rimraf build/* *.tsbuildinfo",
"version:output": "echo \"export const version = '\"$npm_package_version\"';\" > src/version.ts && git add src/version.ts",
"prebuild": "npm run clean && npm run version:output",
"version": "npm run build",
"build": "tsc --project .",
"watch": "tsc --watch --preserveWatchOutput --project .",
"lint": "eslint ./src --ext=.ts,.tsx",
"test": "jest"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/prezly/analytics.git"
},
"author": "Prezly Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/prezly/analytics/issues"
},
"homepage": "https://github.com/prezly/analytics#readme",
"dependencies": {
"@segment/analytics-next": "^1.76.0",
"plausible-tracker": "^0.3.9"
},
"peerDependencies": {
"react": "^17.x || ^18.x || ^19.x"
},
"devDependencies": {
"@prezly/sdk": "23.20.0",
"@types/node": "22.19.18",
"@types/react": "18.3.28"
},
"publishConfig": {
"access": "public"
}
}