forked from Intevel/nuxt-social-tags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.43 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": "nuxt-social-tags",
"version": "1.2.3",
"license": "MIT",
"repository": "https://github.com/intevel/nuxt-social-tags",
"homepage": "https://nuxt-social-tags.netlify.app/",
"type": "module",
"author": {
"name": "Conner Luka Bachmann",
"email": "[email protected]"
},
"contributors": [
"Intevel <[email protected]>"
],
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"release": "nuxt-module-build && standard-version && git push --follow-tags && npm publish",
"lint": "eslint --ext .js,.ts,.vue",
"docs": "cd docs && yarn dev"
},
"dependencies": {
"@nuxt/kit": "^3.0.0-rc.1"
},
"devDependencies": {
"@nuxt/module-builder": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"case-police": "^0.5.3",
"eslint": "latest",
"nuxt": "^3.0.0-rc.1",
"standard-version": "^9.3.2"
},
"keywords": [
"nuxt",
"vue.meta",
"nuxtjs",
"nuxt-module",
"vue3",
"nuxt3",
"seo",
"nuxt-social-tags",
"twitter",
"opengraph",
"meta-tags",
"meta",
"nuxt-community"
]
}