-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
68 lines (68 loc) · 1.78 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
{
"name": "next-plausible",
"version": "3.12.4",
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"author": "Alejandro Tardín <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/4lejandrito/next-plausible.git"
},
"funding": {
"url": "https://github.com/4lejandrito/next-plausible?sponsor=1"
},
"keywords": [
"next",
"plausible",
"analytics"
],
"scripts": {
"test": "jest",
"deploy:demo": "cd demo && npm i && npm run deploy",
"start": "rollup -c -w",
"build": "tsc --project ./tsconfig.json && rollup -c",
"prepublishOnly": "NODE_ENV=production npm run build",
"prepare": "husky install"
},
"peerDependencies": {
"next": "^11.1.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 ",
"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"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/node": "^20.4.2",
"@types/react": "18.2.24",
"@types/react-dom": "18.2.7",
"axios": "^0.26.1",
"caller-path": "^4.0.0",
"husky": "^7.0.4",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.6.1",
"lint-staged": ">=12.3.7",
"next": "15.0.1",
"prettier": "^2.6.1",
"puppeteer": "^13.5.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup": "^2.70.1",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.6.3",
"vercel": "^27.1.0",
"wait-port": "^1.1.0"
},
"lint-staged": {
"*.{js,ts,tsx,md,json,html,css,scss,webmanifest}": "prettier --write"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}