mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-05-17 06:19:37 +03:00
121 lines
3.7 KiB
JSON
121 lines
3.7 KiB
JSON
{
|
|
"name": "vue-meta",
|
|
"version": "3.0.0-alpha.7",
|
|
"description": "Manage HTML metadata in Vue.js components with SSR support",
|
|
"main": "dist/vue-meta.cjs.js",
|
|
"browser": "dist/vue-meta.esm-browser.min.js",
|
|
"unpkg": "dist/vue-meta.global.js",
|
|
"jsdelivr": "dist/vue-meta.global.js",
|
|
"module": "dist/vue-meta.esm-bundler.js",
|
|
"typings": "dist/vue-meta.d.ts",
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist/*.js",
|
|
"dist/vue-meta.d.ts",
|
|
"ssr/*.js",
|
|
"README.md"
|
|
],
|
|
"types": "dist/vue-meta.d.ts",
|
|
"homepage": "https://github.com/nuxt/vue-meta",
|
|
"bugs": "https://github.com/nuxt/vue-meta/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/nuxt/vue-meta.git"
|
|
},
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"google",
|
|
"head",
|
|
"metadata",
|
|
"meta",
|
|
"seo",
|
|
"ssr",
|
|
"title",
|
|
"universal",
|
|
"vue"
|
|
],
|
|
"author": "Pim (@pimlie)",
|
|
"scripts": {
|
|
"build": "yarn clean && rollup -c build/rollup.config.js",
|
|
"clean": "rimraf dist/*",
|
|
"coverage": "codecov",
|
|
"dev": "node examples/server.js",
|
|
"docs": "vuepress dev --host 0.0.0.0 --port 3000 docs",
|
|
"docs:build": "vuepress build docs",
|
|
"lint": "eslint --ext .js,.ts src test examples",
|
|
"prerelease": "git checkout master && git pull -r",
|
|
"release": "yarn lint && yarn test && standard-version",
|
|
"test": "yarn test:unit",
|
|
"test:e2e-ssr": "jest test/e2e/ssr",
|
|
"test:e2e-browser": "jest test/e2e/browser",
|
|
"test:unit": "jest test/unit",
|
|
"test:types": "tsc --build tsconfig.json"
|
|
},
|
|
"peerDependencies": {
|
|
"vue": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.13.8",
|
|
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
|
|
"@babel/preset-typescript": "^7.13.0",
|
|
"@nuxtjs/eslint-config-typescript": "^5.0.0",
|
|
"@rollup/plugin-alias": "^3.1.2",
|
|
"@rollup/plugin-commonjs": "^17.1.0",
|
|
"@rollup/plugin-node-resolve": "^11.2.0",
|
|
"@rollup/plugin-replace": "^2.4.1",
|
|
"@types/jest": "^26.0.22",
|
|
"@types/webpack": "^4.41.26",
|
|
"@types/webpack-env": "^1.16.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.15.2",
|
|
"@typescript-eslint/parser": "^4.15.2",
|
|
"@vue/compiler-sfc": "^3.0.6",
|
|
"@vue/server-renderer": "^3.0.6",
|
|
"@vue/test-utils": "^2.0.0-rc.6",
|
|
"@wishy-gift/html-include-chunks-webpack-plugin": "^0.1.5",
|
|
"babel-jest": "^26.6.3",
|
|
"babel-loader": "^8.2.2",
|
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
"babel-plugin-global-define": "^1.0.3",
|
|
"babel-plugin-module-resolver": "^4.1.0",
|
|
"babel-plugin-transform-import-meta": "^2.0.0",
|
|
"babel-preset-vue": "^2.0.2",
|
|
"browserstack-local": "^1.4.8",
|
|
"chromedriver": "^88.0.0",
|
|
"codecov": "^3.8.1",
|
|
"consola": "^2.15.3",
|
|
"eslint": "^7.21.0",
|
|
"express-urlrewrite": "^1.4.0",
|
|
"geckodriver": "^1.22.1",
|
|
"html-webpack-plugin": "^5.2.0",
|
|
"jest": "^26.6.3",
|
|
"jest-environment-jsdom": "^26.6.2",
|
|
"jest-environment-jsdom-global": "^2.0.4",
|
|
"jiti": "^1.3.0",
|
|
"jsdom": "^16.4.0",
|
|
"lodash": "^4.17.21",
|
|
"node-env-file": "^0.1.8",
|
|
"puppeteer-core": "^8.0.0",
|
|
"rimraf": "^3.0.2",
|
|
"rollup": "^2.40.0",
|
|
"rollup-plugin-dts": "^2.0.1",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"rollup-plugin-typescript2": "^0.30.0",
|
|
"selenium-webdriver": "^4.0.0-beta.1",
|
|
"standard-version": "^9.1.1",
|
|
"tib": "^0.7.5",
|
|
"ts-jest": "^26.5.4",
|
|
"ts-loader": "^9.1.2",
|
|
"typescript": "^4.2.2",
|
|
"vite": "^2.0.4",
|
|
"vue": "^3.0.6",
|
|
"vue-jest": "^5.0.0-alpha.9",
|
|
"vue-loader": "^16.0.0",
|
|
"vue-router": "^4.0.6",
|
|
"webpack": "^5.24.2",
|
|
"webpack-bundle-analyzer": "^4.4.0",
|
|
"webpack-cli": "^4.5.0",
|
|
"webpack-dev-server": "^4.0.0-beta.2",
|
|
"webpackbar": "^4.0.0"
|
|
}
|
|
}
|