-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.62 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
{
"name": "@nuxtjs/plausible",
"type": "module",
"version": "1.2.0",
"packageManager": "pnpm@9.14.2",
"description": "Natively integrates Plausible Analytics into Nuxt",
"author": "Johann Schopplich <hello@johannschopplich.com>",
"license": "MIT",
"homepage": "https://github.com/nuxt-modules/plausible#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-modules/plausible.git"
},
"bugs": "https://github.com/nuxt-modules/plausible/issues",
"keywords": [
"analytics",
"nuxt",
"nuxt3",
"plausible"
],
"exports": {
".": {
"types": "./dist/types.d.ts",
"require": "./dist/module.cjs",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:types": "tsc --noEmit",
"release": "bumpp"
},
"dependencies": {
"@barbapapazes/plausible-tracker": "^0.5.6",
"@nuxt/kit": "^3.14.1592",
"defu": "^6.1.4",
"ufo": "^1.5.4"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.7.1",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.14.1592",
"@types/node": "^20.17.7",
"bumpp": "^9.8.1",
"eslint": "^9.15.0",
"eslint-plugin-perfectionist": "^4.0.3",
"nuxt": "^3.14.1592",
"typescript": "^5.6.3",
"vue-tsc": "^2.1.10"
}
}