-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 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
{
"name": "@dreamonkey/quasar-app-extension-meta",
"version": "2.2.0",
"description": "Automatically manage social meta tags for websites projects hooking into Quasar Meta plugin",
"keywords": [
"quasar",
"meta tags",
"social"
],
"author": "Alessandro Vandelli <[email protected]>",
"license": "MIT",
"files": [
"dist",
"src",
"i18n"
],
"main": "dist/exports.js",
"module": "dist/esm/exports.js",
"types": "dist/exports.d.ts",
"scripts": {
"build": "rm -rf dist i18n && tsc --declaration && tsc --project tsconfig.i18n.json && tsc --project tsconfig.esm.json",
"install-build-clean": "yarn install && yarn build && rm -rf node_modules",
"test": "echo \"No test specified\" && exit 0",
"deploy": "yarn build && yarn publish --tag latest"
},
"repository": "github:dreamonkey/quasar-app-extension-meta",
"bugs": "https://github.com/dreamonkey/quasar-app-extension-meta/issues",
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.6.0",
"yarn": ">= 1.6.0"
},
"devDependencies": {
"@babel/types": "^7.15.6",
"@types/node": "^12.20.27",
"quasar": "^2.1.0",
"typescript": "^4.4.3",
"vue": "^3.2.19",
"vue-i18n": "^9.1.9",
"vue-router": "^4.0.11"
},
"peerDependencies": {
"quasar": "^2.0.0",
"vue": "^3.2.0",
"vue-i18n": "^9.0.0",
"vue-router": "^4.0.0"
},
"peerDependenciesMeta": {
"vue-i18n": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}
}