@deot/dev-vue 2.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1 @@
1
+ // TODO
package/dist/index.cjs ADDED
@@ -0,0 +1,11 @@
1
+ 'use strict';
2
+
3
+ const vite = require('vite');
4
+ const vue = require('@vitejs/plugin-vue');
5
+ const vueJsx = require('@vitejs/plugin-vue-jsx');
6
+
7
+ const index = vite.defineConfig({
8
+ plugins: [vue(), vueJsx()]
9
+ });
10
+
11
+ module.exports = index;
@@ -0,0 +1,6 @@
1
+ import { UserConfig } from 'vite';
2
+
3
+ declare const _default: UserConfig;
4
+ export default _default;
5
+
6
+ export { }
@@ -0,0 +1,9 @@
1
+ import { defineConfig } from 'vite';
2
+ import vue from '@vitejs/plugin-vue';
3
+ import vueJsx from '@vitejs/plugin-vue-jsx';
4
+
5
+ const index = defineConfig({
6
+ plugins: [vue(), vueJsx()]
7
+ });
8
+
9
+ export { index as default };
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@deot/dev-vue",
3
+ "version": "2.5.0",
4
+ "type": "module",
5
+ "main": "dist/index.es.js",
6
+ "types": "dist/index.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "import": "./dist/index.es.js",
10
+ "require": "./dist/index.cjs",
11
+ "types": "./dist/index.d.ts"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "license": "MIT",
18
+ "publishConfig": {
19
+ "access": "public"
20
+ },
21
+ "dependencies": {
22
+ "@vitejs/plugin-vue": "^4.3.4",
23
+ "@vitejs/plugin-vue-jsx": "^3.0.2",
24
+ "vite": "^4.4.9",
25
+ "vue": "^3.3.4",
26
+ "vue-tsc": "^1.8.8"
27
+ },
28
+ "devDependencies": {
29
+ "@deot/dev-shared": "^2.5.0",
30
+ "fs-extra": "^11.1.1"
31
+ }
32
+ }