suncy-my-npm-test 1.0.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.
@@ -0,0 +1,14 @@
1
+ import { createElementBlock as r, openBlock as a } from "vue";
2
+ const s = (t, e) => {
3
+ const c = t.__vccOpts || t;
4
+ for (const [n, o] of e)
5
+ c[n] = o;
6
+ return c;
7
+ }, _ = {};
8
+ function f(t, e) {
9
+ return a(), r("div", null, " aaaaa ");
10
+ }
11
+ const p = /* @__PURE__ */ s(_, [["render", f]]);
12
+ export {
13
+ p as default
14
+ };
@@ -0,0 +1 @@
1
+ (function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t(require("vue")):typeof define=="function"&&define.amd?define(["vue"],t):(e=typeof globalThis<"u"?globalThis:e||self,e.MyTest=t(e.Vue))})(this,(function(e){"use strict";const t=(n,o)=>{const c=n.__vccOpts||n;for(const[f,i]of o)c[f]=i;return c},s={};function r(n,o){return e.openBlock(),e.createElementBlock("div",null," aaaaa ")}return t(s,[["render",r]])}));
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "type": "module",
3
+ "version": "1.0.0",
4
+ "name": "suncy-my-npm-test",
5
+ "description": "A simple Vue 3 Button component",
6
+ "main": "dist/test.es.js",
7
+ "module": "dist/test.es.js",
8
+ "unpkg": "dist/test.umd.js",
9
+ "files": ["dist"],
10
+ "scripts": {
11
+ "test": "echo \"Error: no test specified\" && exit 1",
12
+ "build": "vite build",
13
+ "prepublishOnly": "npm run build"
14
+ },
15
+ "keywords": [],
16
+ "author": "",
17
+ "license": "ISC",
18
+ "dependencies": {
19
+ "vue": "3.5.12"
20
+ },
21
+ "devDependencies": {
22
+ "@vitejs/plugin-vue": "^6.0.1",
23
+ "vite": "^7.1.2"
24
+ }
25
+ }