vue-webpack-plugin
Version:
一个处理vue框架的webpack插件
65 lines (64 loc) • 1.7 kB
JSON
{
"name": "vue-webpack-plugin",
"version": "0.0.3",
"description": "一个处理vue框架的webpack插件",
"main": "lib/index.js",
"typings": "types/index.d.ts",
"author": {
"name": "ccode",
"url": "https://github.com/imccode"
},
"files": [
"LICENSE",
"README.md",
"lib/",
"types/"
],
"keywords": [
"vue-webpack-plugin",
"vue-webpack"
],
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/imccode/vue-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/imccode/vue-webpack-plugin/issues"
},
"homepage": "https://github.com/imccode/vue-webpack-plugin",
"scripts": {
"dev": "webpack --config ./example/webpack.config.js --mode development -w",
"build": "webpack --config ./example/webpack.config.js --mode production",
"tsc": "rm -rf types && tsc",
"publish-npm": "rm -rf types && tsc && yarn publish --registry https://registry.npmjs.org",
"publish-npm:next": "rm -rf types && tsc && yarn publish --registry https://registry.npmjs.org --tag next "
},
"devDependencies": {
"@types/node": "^12.12.5",
"@types/webpack": "^4.41.0",
"prettier": "1.19.1",
"typescript": "latest",
"webpack": "^4.41.4"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": false,
"trailingComma": "none",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid",
"insertPragma": false,
"tabWidth": 2,
"useTabs": false
},
"dependencies": {
"vue-loader": "^15.8.3",
"vue-template-compiler": "^2.6.11"
}
}