forked from 4lejandrito/next-plausible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
{
"name": "next-plausible",
"version": "3.6.2",
"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": "cd test && npm i && npm test",
"test:vercel": "cd test && npm i && npm run test:vercel",
"deploy:demo": "cd demo && npm i && npm run deploy",
"start": "rollup -c -w",
"build": "rollup -c",
"prepublishOnly": "NODE_ENV=production npm run build",
"prepare": "husky install"
},
"peerDependencies": {
"next": "^11.1.0 || ^12.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"husky": "^7.0.4",
"lint-staged": ">=12.3.7",
"next": "12.1.6",
"prettier": "^2.6.1",
"react": "18.0.0",
"react-dom": "18.0.0",
"rollup": "^2.70.1",
"rollup-plugin-typescript2": "^0.31.2",
"typescript": "^4.6.3"
},
"lint-staged": {
"*.{js,ts,tsx,md,json,html,css,scss,webmanifest}": "prettier --write"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}