-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "vue-plausible",
"version": "1.3.2",
"description": "Plausible analytics as Vue.js and NuxtJS plugins",
"license": "MIT",
"author": {
"name": "Moritz Sternemann",
"url": "https://github.com/moritzsternemann",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moritzsternemann/vue-plausible.git"
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"files": [
"lib/"
],
"keywords": [
"analytics",
"plausible",
"plausible analytics",
"tracking",
"vue",
"nuxt",
"plugin"
],
"scripts": {
"build": "tsc -p tsconfig-esm.json && tsc -p tsconfig-cjs.json",
"prepublishOnly": "npm run build",
"release": "standard-version --sign",
"release:pre": "standard-version --sign --prerelease pre"
},
"dependencies": {
"plausible-tracker": "^0.3.4"
},
"devDependencies": {
"@nuxt/types": "^2.15.0",
"nuxt": "^2.15.0",
"standard-version": "^9.0.0",
"typescript": "^4.0.5",
"vue": "^2.6.12",
"vuex": "^3.5.1"
}
}