UNPKG

1.03 kBJSONView Raw
1{
2 "name": "rollup-plugin-vue",
3 "version": "6.0.0-alpha.9",
4 "license": "MIT",
5 "main": "dist/index.js",
6 "typings": "dist/index.d.ts",
7 "author": "Rahul Kadyan <hi@znck.me> (https://znck.me)",
8 "files": [
9 "dist"
10 ],
11 "scripts": {
12 "build": "tsc -p .",
13 "prepublishOnly": "tsc -p .",
14 "dev": "tsc -w -p ."
15 },
16 "dependencies": {
17 "debug": "^4.1.1",
18 "hash-sum": "^2.0.0",
19 "rollup-pluginutils": "^2.8.2"
20 },
21 "peerDependencies": {
22 "@vue/compiler-sfc": "*"
23 },
24 "devDependencies": {
25 "@types/debug": "^4.1.5",
26 "@types/node": "^13.13.2",
27 "@vue/compiler-sfc": "^3.0.0-beta.9",
28 "husky": "^4.2.0",
29 "lint-staged": "^10.1.7",
30 "prettier": "^2.0.5",
31 "rollup": "^2.7.2",
32 "typescript": "^3.7.5"
33 },
34 "husky": {
35 "hooks": {
36 "pre-commit": "lint-staged"
37 }
38 },
39 "lint-staged": {
40 "*.{ts,js,json}": [
41 "prettier --write"
42 ]
43 },
44 "prettier": {
45 "printWidth": 80,
46 "trailingComma": "es5",
47 "semi": false,
48 "singleQuote": true
49 }
50}