@jackbo_vip/admin-kit 1.0.0 → 1.0.2

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 (3) hide show
  1. package/README.md +7 -5
  2. package/package.json +23 -22
  3. package/LICENSE +0 -21
package/README.md CHANGED
@@ -2,24 +2,26 @@
2
2
 
3
3
  A comprehensive Vue 3 admin UI component library with TypeScript support.
4
4
 
5
+ **NPM Package**: `@jackbo_vip/admin-kit`
6
+
5
7
  ## Installation
6
8
 
7
9
  ### NPM
8
10
 
9
11
  ```bash
10
- npm install admin-kit
12
+ npm install @jackbo_vip/admin-kit
11
13
  ```
12
14
 
13
15
  ### PNPM
14
16
 
15
17
  ```bash
16
- pnpm add admin-kit
18
+ pnpm add @jackbo_vip/admin-kit
17
19
  ```
18
20
 
19
21
  ### Yarn
20
22
 
21
23
  ```bash
22
- yarn add admin-kit
24
+ yarn add @jackbo_vip/admin-kit
23
25
  ```
24
26
 
25
27
  ### CDN
@@ -38,7 +40,7 @@ yarn add admin-kit
38
40
 
39
41
  ```typescript
40
42
  import { createApp } from 'vue';
41
- import AdminKit from 'admin-kit';
43
+ import AdminKit from '@jackbo_vip/admin-kit';
42
44
  import '@admin-kit/design/dist/index.css';
43
45
 
44
46
  const app = createApp(App);
@@ -49,7 +51,7 @@ app.mount('#app');
49
51
  ### On-Demand Import
50
52
 
51
53
  ```typescript
52
- import { AdminLayout, AdminForm, AdminMenu } from 'admin-kit';
54
+ import { AdminLayout, AdminForm, AdminMenu } from '@jackbo_vip/admin-kit';
53
55
  import '@admin-kit/design/dist/index.css';
54
56
  ```
55
57
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jackbo_vip/admin-kit",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "A comprehensive Vue 3 admin UI component library with TypeScript support",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -16,6 +16,11 @@
16
16
  "files": [
17
17
  "dist"
18
18
  ],
19
+ "scripts": {
20
+ "build": "unbuild",
21
+ "dev": "unbuild --watch",
22
+ "prepublishOnly": "pnpm build"
23
+ },
19
24
  "keywords": [
20
25
  "vue",
21
26
  "vue3",
@@ -32,30 +37,26 @@
32
37
  "url": "https://github.com/jackBoVip/admin-kit.git"
33
38
  },
34
39
  "dependencies": {
35
- "@admin-kit/design": "1.0.0",
36
- "@admin-kit/typings": "1.0.0",
37
- "@admin-kit/icons": "1.0.0",
38
- "@admin-kit/shared": "1.0.0",
39
- "@admin-kit/form-ui": "1.0.0",
40
- "@admin-kit/composables": "1.0.0",
41
- "@admin-kit/layout-ui": "1.0.0",
42
- "@admin-kit/menu-ui": "1.0.0",
43
- "@admin-kit/popup-ui": "1.0.0",
44
- "@admin-kit/preferences": "1.0.0",
45
- "@admin-kit/shadcn-ui": "1.0.0",
46
- "@admin-kit/tabs-ui": "1.0.0"
40
+ "@admin-kit/design": "workspace:*",
41
+ "@admin-kit/icons": "workspace:*",
42
+ "@admin-kit/shared": "workspace:*",
43
+ "@admin-kit/typings": "workspace:*",
44
+ "@admin-kit/composables": "workspace:*",
45
+ "@admin-kit/preferences": "workspace:*",
46
+ "@admin-kit/form-ui": "workspace:*",
47
+ "@admin-kit/layout-ui": "workspace:*",
48
+ "@admin-kit/menu-ui": "workspace:*",
49
+ "@admin-kit/popup-ui": "workspace:*",
50
+ "@admin-kit/shadcn-ui": "workspace:*",
51
+ "@admin-kit/tabs-ui": "workspace:*"
47
52
  },
48
53
  "devDependencies": {
49
- "typescript": "^5.9.3",
50
- "unbuild": "^3.6.1",
51
- "vue": "^3.5.26",
52
- "@admin-kit/tsconfig": "1.0.0"
54
+ "typescript": "catalog:",
55
+ "unbuild": "catalog:",
56
+ "vue": "catalog:",
57
+ "@admin-kit/tsconfig": "workspace:*"
53
58
  },
54
59
  "peerDependencies": {
55
60
  "vue": "^3.5.0"
56
- },
57
- "scripts": {
58
- "build": "unbuild",
59
- "dev": "unbuild --watch"
60
61
  }
61
- }
62
+ }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 jackBoVip
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.