@myop/vue 0.0.1-security → 0.0.22

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +42 -3
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
- # Security holding package
1
+ # Vue 3 + TypeScript + Vite
2
2
 
3
- This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
3
+ This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
4
4
 
5
- Please refer to www.npmjs.com/advisories?search=%40myop%2Fvue for more information.
5
+ Learn more about the recommended Project Setup and IDE Support in the [Vue Docs TypeScript Guide](https://vuejs.org/guide/typescript/overview.html#project-setup).
package/package.json CHANGED
@@ -1,6 +1,45 @@
1
1
  {
2
2
  "name": "@myop/vue",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "0.0.22",
4
+ "type": "module",
5
+ "main": "./dist/index.umd.cjs",
6
+ "module": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "contributors": [
9
+ {
10
+ "name": "Hadar Geva",
11
+ "url": "https://github.com/hadarge"
12
+ }
13
+ ],
14
+ "exports": {
15
+ ".": {
16
+ "import": "./dist/index.js",
17
+ "require": "./dist/index.umd.js"
18
+ },
19
+ "./dist/style.css": "./dist/style.css"
20
+ },
21
+ "scripts": {
22
+ "dev": "vite",
23
+ "build": "vite build && vue-tsc --emitDeclarationOnly",
24
+ "preview": "vite preview",
25
+ "release": "npm publish --access public"
26
+ },
27
+ "dependencies": {
28
+ "@myop/sdk": "npm:@myop-dev/sdk@latest"
29
+ },
30
+ "peerDependencies": {
31
+ "vue": "^3.5.13"
32
+ },
33
+ "devDependencies": {
34
+ "@types/node": "^22.14.0",
35
+ "@vitejs/plugin-vue": "^5.2.1",
36
+ "@vue/tsconfig": "^0.7.0",
37
+ "prettier": "^3.5.3",
38
+ "typescript": "~5.7.2",
39
+ "vite": "^6.2.0",
40
+ "vue-tsc": "^2.2.4"
41
+ },
42
+ "files": [
43
+ "./dist/*"
44
+ ]
6
45
  }