UNPKG

3.12 kBJSONView Raw
1{
2 "name": "rollup-plugin-vue",
3 "version": "4.6.1",
4 "description": "Roll .vue files",
5 "author": "Rahul Kadyan <hi@znck.me>",
6 "bugs": {
7 "url": "https://github.com/vuejs/rollup-plugin-vue/issues"
8 },
9 "homepage": "https://github.com/vuejs/rollup-plugin-vue#readme",
10 "keywords": [
11 "rollup-plugin",
12 "vue"
13 ],
14 "license": "MIT",
15 "main": "dist/rollup-plugin-vue.js",
16 "module": "dist/rollup-plugin-vue.mjs",
17 "typings": "dist/index.d.ts",
18 "repository": {
19 "type": "git",
20 "url": "git+https://github.com/vuejs/rollup-plugin-vue.git"
21 },
22 "standard-version": {
23 "scripts": {
24 "postchangelog": "yarn test && yarn :build:docs && git add docs/"
25 }
26 },
27 "scripts": {
28 "prepublishOnly": "rm -rf dist/ && yarn build",
29 "build": "yarn :build",
30 "docs": "yarn :docs",
31 "pre:build": "yarn lint",
32 ":build": "rollup -c",
33 "pre:build:docs": "cp CHANGELOG.md docs/changelog.md",
34 ":build:docs": "vuepress build docs/",
35 "post:build:docs": "rm docs/changelog.md",
36 "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
37 "pre:docs": "cp CHANGELOG.md docs/changelog.md",
38 ":docs": "vuepress dev docs/",
39 "post:docs": "rm docs/CHANGELOG.md",
40 "lint": "prettier --no-semi --single-quote --write **/*.js **/*.vue !test/target/** !dist/**",
41 "release": "standard-version -a",
42 "test": "jest"
43 },
44 "files": [
45 "dist/"
46 ],
47 "dependencies": {
48 "@vue/component-compiler": "^3.6",
49 "@vue/component-compiler-utils": "^2.1.0",
50 "debug": "^4.1.1",
51 "hash-sum": "^1.0.2",
52 "querystring": "^0.2.0",
53 "rollup-pluginutils": "^2.0.1",
54 "source-map": "0.7.3",
55 "vue-runtime-helpers": "^0.2.0"
56 },
57 "devDependencies": {
58 "@babel/core": "^7.0.0-beta.46",
59 "@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.46",
60 "@babel/plugin-transform-runtime": "^7.0.0-beta.46",
61 "@babel/preset-env": "^7.0.0-beta.46",
62 "@babel/runtime": "^7.0.0-beta.46",
63 "@types/debug": "^0.0.31",
64 "@types/jest": "^23.3.12",
65 "@types/node": "^10.12.18",
66 "@types/puppeteer": "^1.3.1",
67 "@znck/promised": "^1.0.0",
68 "babel-core": "7.0.0-bridge.0",
69 "babel-jest": "^23.6.0",
70 "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
71 "conventional-changelog": "^3.0.5",
72 "jest": "^23.6.0",
73 "node-sass": "^4.9.0",
74 "postcss": "^7.0.11",
75 "postcss-assets": "^5.0.0",
76 "prettier": "^1.12.1",
77 "pug": "^2.0.3",
78 "puppeteer": "^1.4.0",
79 "rollup": "^1.1.0",
80 "rollup-plugin-babel": "^4.0.0-beta.4",
81 "rollup-plugin-commonjs": "^9.1.3",
82 "rollup-plugin-css-only": "^0.4.0",
83 "rollup-plugin-md": "^0.0.7",
84 "rollup-plugin-node-resolve": "^4.0.0",
85 "rollup-plugin-replace": "^2.0.0",
86 "rollup-plugin-typescript": "^1.0.0",
87 "rollup-plugin-typescript2": "^0.18.1",
88 "rollup-plugin-url": "^2.1.0",
89 "ts-jest": "^23.10.5",
90 "typescript": "^3.2.2",
91 "vue": "^2.5.16",
92 "vue-class-component": "^6.2.0",
93 "vue-template-compiler": "^2.5.16",
94 "vuepress": "^0.14.8"
95 },
96 "peerDependencies": {
97 "vue-template-compiler": "*"
98 }
99}