|
1 | 1 | { |
2 | 2 | "name": "tdesign-uniapp-chat", |
3 | | - "version": "0.1.1", |
4 | | - "typings": "./npm_dist/types/index.d.ts", |
| 3 | + "version": "0.1.3", |
| 4 | + "typings": "./dist/types/index.d.ts", |
5 | 5 | "exports": { |
6 | | - "./*": "./npm_dist/*", |
| 6 | + "./*": "./dist/*", |
7 | 7 | "./attachments/attachments.vue": { |
8 | | - "types": "./npm_dist/types/attachments.d.ts", |
9 | | - "import": "./npm_dist/attachments/attachments.vue", |
10 | | - "default": "./npm_dist/attachments/attachments.vue" |
| 8 | + "types": "./dist/types/attachments.d.ts", |
| 9 | + "import": "./dist/attachments/attachments.vue", |
| 10 | + "default": "./dist/attachments/attachments.vue" |
11 | 11 | }, |
12 | 12 | "./chat-actionbar/chat-actionbar.vue": { |
13 | | - "types": "./npm_dist/types/chat-actionbar.d.ts", |
14 | | - "import": "./npm_dist/chat-actionbar/chat-actionbar.vue", |
15 | | - "default": "./npm_dist/chat-actionbar/chat-actionbar.vue" |
| 13 | + "types": "./dist/types/chat-actionbar.d.ts", |
| 14 | + "import": "./dist/chat-actionbar/chat-actionbar.vue", |
| 15 | + "default": "./dist/chat-actionbar/chat-actionbar.vue" |
16 | 16 | }, |
17 | 17 | "./chat-content/chat-content.vue": { |
18 | | - "types": "./npm_dist/types/chat-content.d.ts", |
19 | | - "import": "./npm_dist/chat-content/chat-content.vue", |
20 | | - "default": "./npm_dist/chat-content/chat-content.vue" |
| 18 | + "types": "./dist/types/chat-content.d.ts", |
| 19 | + "import": "./dist/chat-content/chat-content.vue", |
| 20 | + "default": "./dist/chat-content/chat-content.vue" |
21 | 21 | }, |
22 | 22 | "./chat-list/chat-list.vue": { |
23 | | - "types": "./npm_dist/types/chat-list.d.ts", |
24 | | - "import": "./npm_dist/chat-list/chat-list.vue", |
25 | | - "default": "./npm_dist/chat-list/chat-list.vue" |
| 23 | + "types": "./dist/types/chat-list.d.ts", |
| 24 | + "import": "./dist/chat-list/chat-list.vue", |
| 25 | + "default": "./dist/chat-list/chat-list.vue" |
26 | 26 | }, |
27 | 27 | "./chat-loading/chat-loading.vue": { |
28 | | - "types": "./npm_dist/types/chat-loading.d.ts", |
29 | | - "import": "./npm_dist/chat-loading/chat-loading.vue", |
30 | | - "default": "./npm_dist/chat-loading/chat-loading.vue" |
| 28 | + "types": "./dist/types/chat-loading.d.ts", |
| 29 | + "import": "./dist/chat-loading/chat-loading.vue", |
| 30 | + "default": "./dist/chat-loading/chat-loading.vue" |
31 | 31 | }, |
32 | 32 | "./chat-markdown/chat-markdown.vue": { |
33 | | - "types": "./npm_dist/types/chat-markdown.d.ts", |
34 | | - "import": "./npm_dist/chat-markdown/chat-markdown.vue", |
35 | | - "default": "./npm_dist/chat-markdown/chat-markdown.vue" |
| 33 | + "types": "./dist/types/chat-markdown.d.ts", |
| 34 | + "import": "./dist/chat-markdown/chat-markdown.vue", |
| 35 | + "default": "./dist/chat-markdown/chat-markdown.vue" |
36 | 36 | }, |
37 | 37 | "./chat-message/chat-message.vue": { |
38 | | - "types": "./npm_dist/types/chat-message.d.ts", |
39 | | - "import": "./npm_dist/chat-message/chat-message.vue", |
40 | | - "default": "./npm_dist/chat-message/chat-message.vue" |
| 38 | + "types": "./dist/types/chat-message.d.ts", |
| 39 | + "import": "./dist/chat-message/chat-message.vue", |
| 40 | + "default": "./dist/chat-message/chat-message.vue" |
41 | 41 | }, |
42 | 42 | "./chat-sender/chat-sender.vue": { |
43 | | - "types": "./npm_dist/types/chat-sender.d.ts", |
44 | | - "import": "./npm_dist/chat-sender/chat-sender.vue", |
45 | | - "default": "./npm_dist/chat-sender/chat-sender.vue" |
| 43 | + "types": "./dist/types/chat-sender.d.ts", |
| 44 | + "import": "./dist/chat-sender/chat-sender.vue", |
| 45 | + "default": "./dist/chat-sender/chat-sender.vue" |
46 | 46 | }, |
47 | 47 | "./chat-thinking/chat-thinking.vue": { |
48 | | - "types": "./npm_dist/types/chat-thinking.d.ts", |
49 | | - "import": "./npm_dist/chat-thinking/chat-thinking.vue", |
50 | | - "default": "./npm_dist/chat-thinking/chat-thinking.vue" |
| 48 | + "types": "./dist/types/chat-thinking.d.ts", |
| 49 | + "import": "./dist/chat-thinking/chat-thinking.vue", |
| 50 | + "default": "./dist/chat-thinking/chat-thinking.vue" |
51 | 51 | } |
52 | 52 | }, |
53 | 53 | "publishConfig": { |
54 | 54 | "registry": "https://registry.npmjs.org/" |
55 | 55 | }, |
56 | 56 | "files": [ |
57 | | - "npm_dist", |
| 57 | + "dist", |
58 | 58 | "global.d.ts", |
| 59 | + "LICENSE", |
59 | 60 | "README.md", |
60 | 61 | "CHANGELOG.md" |
61 | 62 | ], |
|
70 | 71 | "site": "pnpm --filter=\"./site\" build", |
71 | 72 | "site:dev": "pnpm --filter=\"./site\" run dev", |
72 | 73 | "site:preview": "pnpm --filter=\"./site\" run site:preview", |
73 | | - "type-check": "vue-tsc --noEmit", |
74 | | - "publish": "cd npm_dist && npm publish" |
| 74 | + "type-check": "vue-tsc --noEmit" |
75 | 75 | }, |
76 | 76 | "devDependencies": { |
77 | 77 | "@commitlint/cli": "^12.0.1", |
|
0 commit comments