-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.19 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
{
"name": "@koiztech/next-yandex-metrika",
"version": "0.0.7",
"description": "Yandex Metrika for Next.js >= 14",
"keywords": [
"next.js",
"yandex",
"metrika",
"analytics"
],
"author": "Oleg Korol <[email protected]>",
"license": "MIT",
"private": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"README_ru.md"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"prepublishOnly": "pnpm build",
"build": "rm -rf dist && tsup",
"push": "yalc push",
"lint": "eslint src --fix"
},
"peerDependencies": {
"next": "^14.2.11",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^9",
"eslint-config-next": "15.0.2",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tsup": "^8.3.5",
"typescript": "^5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olegkorol/next-yandex-metrika.git"
}
}