morghulis 1.0.5 → 1.0.7

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/package.json CHANGED
@@ -1,33 +1,47 @@
1
1
  {
2
2
  "name": "morghulis",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"
7
7
  ],
8
8
  "main": "./dist/morghulis.umd.cjs",
9
9
  "module": "./dist/morghulis.js",
10
- "types": "./dist/main.d.ts",
11
10
  "exports": {
12
11
  ".": {
13
12
  "import": "./dist/morghulis.js",
14
- "require": "./dist/morghulis.umd.js"
13
+ "require": "./dist/morghulis.umd.cjs"
15
14
  },
16
- "./dist/style.css": "./dist/style.css"
15
+ "./style.css": "./dist/style.css"
17
16
  },
17
+ "types": "./dist/types.d.ts",
18
18
  "scripts": {
19
19
  "dev": "vite",
20
- "build": "vite build && vue-tsc --emitDeclarationOnly",
20
+ "build": "vite build && npm run generate:types",
21
+ "generate:types": "vue-tsc --declaration --emitDeclarationOnly --outdir ./dist",
21
22
  "preview": "vite preview"
22
23
  },
23
24
  "dependencies": {
25
+ "@vue/eslint-config-typescript": "^11.0.1",
26
+ "@vue/tsconfig": "^0.7.0",
27
+ "@vueuse/core": "^12.3.0",
28
+ "@vueuse/integrations": "^12.3.0",
29
+ "axios": "^1.7.9",
30
+ "defu": "^6.1.4",
24
31
  "element-plus": "^2.9.1",
25
- "vue": "^3.5.13"
32
+ "js-cookie": "^3.0.5",
33
+ "nprogress": "^0.2.0",
34
+ "radash": "^12.1.0",
35
+ "universal-cookie": "^7.2.2",
36
+ "uuid": "^11.0.3",
37
+ "vue": "^3.5.13",
38
+ "vue-tsc": "^2.2.0"
26
39
  },
27
40
  "devDependencies": {
28
- "@types/node": "^22.10.2",
29
- "@vitejs/plugin-vue": "^5.2.1",
41
+ "@tsconfig/node22": "^22.0.0",
30
42
  "@vue/tsconfig": "^0.7.0",
43
+ "@types/node": "^22.10.5",
44
+ "@vitejs/plugin-vue": "^5.2.1",
31
45
  "typescript": "~5.6.2",
32
46
  "vite": "^6.0.5",
33
47
  "vue-tsc": "^2.2.0"
@@ -1,10 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
- msg: {
3
- type: StringConstructor;
4
- };
5
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
6
- msg: {
7
- type: StringConstructor;
8
- };
9
- }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
10
- export default _default;
package/dist/main.d.ts DELETED
@@ -1,6 +0,0 @@
1
- import 'element-plus/dist/index.css';
2
- import 'element-plus/theme-chalk/dark/css-vars.css';
3
- declare const plugin: {
4
- install: (app: any, options: any) => void;
5
- };
6
- export default plugin;