generated from productdevbookcom/nuxt-bundle-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
98 lines (98 loc) · 2.61 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "v-plausible",
"type": "module",
"version": "1.2.0",
"packageManager": "[email protected]",
"description": "Plausible Analytics plugin for Vue or Nuxt",
"author": "Mehmet - productdevbook <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/productdevbook",
"homepage": "https://github.com/productdevbookcom/v-plausible",
"repository": {
"type": "git",
"url": "https://github.com/productdevbookcom/v-plausible.git"
},
"bugs": "https://github.com/productdevbookcom/v-plausible/issues",
"keywords": [
"vue 3",
"analytics",
"plausible",
"plausible analytics",
"tracking",
"vue",
"nuxt",
"nuxt 3"
],
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./vue": {
"types": "./dist/vue/index.d.ts",
"import": "./dist/vue/index.mjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=16",
"pnpm": ">=8"
},
"scripts": {
"dev": "pnpm nuxi dev playground-nuxt",
"build": "pnpm dev:prepare && pnpm nuxt-module-build",
"dev:build": "nuxi build playground-nuxt",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground-nuxt",
"play": "pnpm --filter playground-nuxt dev",
"play:vue": "pnpm --filter playground-vue dev",
"prepublishOnly": "pnpm run build",
"release": "pnpm build && bumpp --commit --push --tag && pnpm publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "pnpm build && vitest",
"test:watch": "pnpm dev:prepare && vitest --watch",
"coverage": "vitest run --coverage"
},
"peerDependencies": {
"vue": ">=3.3.0"
},
"dependencies": {
"@nuxt/kit": "^3.7.4",
"defu": "^6.1.2",
"plausible-tracker": "^0.3.8"
},
"devDependencies": {
"@antfu/eslint-config": "1.0.0-beta.18",
"@nuxt/module-builder": "^0.5.2",
"@nuxt/schema": "^3.7.4",
"@nuxt/test-utils": "^3.7.4",
"@vitejs/plugin-vue": "^4.4.0",
"@vitest/coverage-v8": "^0.34.6",
"@vue-macros/volar": "^0.16.0",
"@vue/test-utils": "^2.4.1",
"bumpp": "^9.2.0",
"eslint": "8.50.0",
"happy-dom": "^12.8.0",
"jsdom": "^22.1.0",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"unconfig": "^0.3.11",
"unplugin-vue-macros": "^2.6.1",
"vite": "^4.4.10",
"vite-plugin-dts": "^3.6.0",
"vitest": "^0.34.6",
"vue": "^3.3.4"
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"v-plausible": "link:.",
"vue": "^3.3.4"
}
}