-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.01 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
{
"name": "plausible-visitor-count",
"version": "1.0.0",
"description": "Proxy to get visitor count for a specific page from Plausible Analytics",
"main": "dist/index.mjs",
"bin": "dist/index.mjs",
"repository": "https://github.com/ouuan/plausible-visitor-count",
"author": "Yufan You <[email protected]> (https://github.com/ouuan)",
"license": "Apache-2.0",
"private": true,
"scripts": {
"lint": "eslint . --ignore-path .gitignore --ext .ts",
"typecheck": "tsc --noEmit",
"build": "unbuild"
},
"devDependencies": {
"@ouuan/tsconfig-base": "1.3.0",
"@types/node": "20.17.10",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.31.0",
"typescript": "5.7.2",
"unbuild": "2.0.0"
},
"dependencies": {
"@fastify/type-provider-typebox": "4.1.0",
"@sinclair/typebox": "0.34.13",
"fastify": "4.29.0",
"got": "14.4.5"
}
}