-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
146 lines (146 loc) Β· 4.9 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "vue-plugin-boilerplate",
"version": "0.0.1",
"description": "Boilerplate for vue 2&3 plugin development π©π¦",
"keywords": [
"vue plugin",
"vue plugin boilerplate",
"vue plugin template",
"vue plugin starter"
],
"author": "selimdoyranli",
"contributors": [
"selimdoyranli <[email protected]> (https://selimdoyranli.com)"
],
"bugs": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/selimdoyranli/vue-plugin-boilerplate"
},
"main": "dist/vue3/index.js",
"module": "dist/vue3/vue-plugin-boilerplate.mjs",
"browser": "dist/vue3/vue-plugin-boilerplate.global.js",
"unpkg": "dist/vue3/vue-plugin-boilerplate.global.js",
"exports": {
".": {
"require": "./dist/vue3/vue-plugin-boilerplate.cjs",
"import": "./dist/vue3/index.js",
"browser": "./dist/vue3/vue-plugin-boilerplate.global.js",
"umd": "./dist/vue3/vue-plugin-boilerplate.umd.js",
"unpkg": "./dist/vue3/vue-plugin-boilerplate.global.js",
"module": "./dist/vue3/vue-plugin-boilerplate.mjs",
"types": "./dist/index.d.ts"
}
},
"types": "dist/index.d.ts",
"files": [
"dist",
"meta",
"CHANGELOG.md"
],
"sideEffects": false,
"scripts": {
"build:vue3": "rimraf dist/vue3 && cross-env NODE_ENV=production VUE_VERSION=3 rollup --config build/rollup.config.js",
"build:vue2": "rimraf dist/vue2 && cross-env NODE_ENV=production VUE_VERSION=2 rollup --config build/rollup.config.js",
"build": "rimraf dist && yarn build:vue3 && yarn build:vue2",
"commit": "cz",
"changelog": "changelogen",
"lint:eslint": "eslint --ext .js,.ts,.json,.vue,.pug --ignore-path .gitignore --ignore-path .eslintignore .",
"lint:eslint:fix": "eslint --fix --ext .js,.ts,.json,.vue,.pug --ignore-path .gitignore --ignore-path .eslintignore .",
"lint:stylelint": "stylelint \"**/*.{css,sass,scss,less,stylus,vue}\" --ignore-path .stylelintignore",
"lint:stylelint:fix": "stylelint --fix \"**/*.{css,sass,scss,less,stylus,vue}\" --ignore-path .stylelintignore",
"prettier": "prettier --config ./.prettierrc.js --ignore-path ./.prettierignore --write \"**/*.{js,ts,json,css,scss,vue,html,pug}\" --end-of-line lf",
"type:check": "vue-tsc --noEmit"
},
"lint-staged": {
"*.{ts,js,vue}": [
"yarn lint:eslint",
"yarn prettier"
],
"**/*.{css,sass,scss,less,stylus,vue}": [
"yarn lint:stylelint",
"yarn prettier"
]
},
"dependencies": {
"vue-demi": "latest"
},
"peerDependencies": {
"@vue/composition-api": "^1.7.1",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-modules-umd": "^7.12.1",
"@babel/preset-env": "^7.12.10",
"@babel/preset-typescript": "^7.21.5",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@prettier/plugin-pug": "^2.4.1",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-replace": "^5.0.2",
"@types/node": "^18.13.0",
"@types/stylelint": "14.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.14.0",
"@vue/compiler-sfc": "^3.0.4",
"autoprefixer": "^10.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-plugin-rename-umd-globals": "^1.0.0",
"changelogen": "^0.5.3",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"husky": "4.2.5",
"lint-staged": "^13.2.2",
"postcss": "^8.2.1",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.4",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"rimraf": "^5.0.1",
"rollup": "^2.79.1",
"rollup-plugin-css-only": "2.0.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-scss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.64.1",
"sass-loader": "10.1.1",
"stylelint": "14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-order": "^6.0.2",
"stylelint-scss": "^4.4.0",
"typescript": "^5.1.6",
"vue-eslint-parser": "^9.1.0",
"vue-eslint-parser-template-tokenizer-pug": "^0.4.10",
"vue-rollup-plugin-vue2": "npm:rollup-plugin-vue@^5.1.9",
"vue-rollup-plugin-vue3": "npm:rollup-plugin-vue@^6.0.0",
"vue-template-compiler": "^2.6.14",
"vue-tsc": "^1.8.6"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}