-
Notifications
You must be signed in to change notification settings - Fork 325
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 4.53 KB
/
package.json
File metadata and controls
142 lines (142 loc) · 4.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "@tdesign/uniapp-chat",
"version": "0.2.2",
"id": "tdesign-uniapp-chat",
"title": "tdesign-uniapp-chat",
"description": "TDesign Chat Component for UniApp",
"author": "tdesign",
"license": "MIT",
"keywords": [
"tdesign",
"miniprogram",
"uniapp",
"vue"
],
"typings": "./dist/types/index.d.ts",
"types": "./dist/types/index.d.ts",
"exports": {
"./*": "./dist/*",
"./global": {
"types": "./global.d.ts"
},
"./attachments/attachments.vue": {
"types": "./dist/types/attachments.d.ts",
"import": "./dist/attachments/attachments.vue",
"default": "./dist/attachments/attachments.vue"
},
"./chat-actionbar/chat-actionbar.vue": {
"types": "./dist/types/chat-actionbar.d.ts",
"import": "./dist/chat-actionbar/chat-actionbar.vue",
"default": "./dist/chat-actionbar/chat-actionbar.vue"
},
"./chat-content/chat-content.vue": {
"types": "./dist/types/chat-content.d.ts",
"import": "./dist/chat-content/chat-content.vue",
"default": "./dist/chat-content/chat-content.vue"
},
"./chat-list/chat-list.vue": {
"types": "./dist/types/chat-list.d.ts",
"import": "./dist/chat-list/chat-list.vue",
"default": "./dist/chat-list/chat-list.vue"
},
"./chat-loading/chat-loading.vue": {
"types": "./dist/types/chat-loading.d.ts",
"import": "./dist/chat-loading/chat-loading.vue",
"default": "./dist/chat-loading/chat-loading.vue"
},
"./chat-markdown/chat-markdown.vue": {
"types": "./dist/types/chat-markdown.d.ts",
"import": "./dist/chat-markdown/chat-markdown.vue",
"default": "./dist/chat-markdown/chat-markdown.vue"
},
"./chat-message/chat-message.vue": {
"types": "./dist/types/chat-message.d.ts",
"import": "./dist/chat-message/chat-message.vue",
"default": "./dist/chat-message/chat-message.vue"
},
"./chat-sender/chat-sender.vue": {
"types": "./dist/types/chat-sender.d.ts",
"import": "./dist/chat-sender/chat-sender.vue",
"default": "./dist/chat-sender/chat-sender.vue"
},
"./chat-thinking/chat-thinking.vue": {
"types": "./dist/types/chat-thinking.d.ts",
"import": "./dist/chat-thinking/chat-thinking.vue",
"default": "./dist/chat-thinking/chat-thinking.vue"
}
},
"files": [
"dist",
"global.d.ts",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"bugs": {
"url": "https://github.com/Tencent/tdesign-miniprogram/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tencent/tdesign-miniprogram.git",
"directory": "packages/tdesign-uniapp-chat"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"site": "pnpm --filter=\"./site\" build",
"site:dev": "pnpm --filter=\"./site\" run dev",
"site:preview": "pnpm --filter=\"./site\" run site:preview",
"type-check": "vue-tsc --noEmit"
},
"devDependencies": {
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@dcloudio/types": "catalog:uni",
"@stylistic/eslint-plugin-jsx": "catalog:",
"@types/node": "catalog:",
"@typescript-eslint/eslint-plugin": "catalog:",
"@typescript-eslint/parser": "catalog:",
"@vue/runtime-core": "catalog:",
"@vue/tsconfig": "catalog:",
"concurrently": "catalog:",
"dotenv": "catalog:",
"echarts": "catalog:",
"eslint": "catalog:",
"eslint-config-light": "latest",
"eslint-config-light-vue3": "latest",
"eslint-import-resolver-alias": "catalog:",
"eslint-import-resolver-node": "catalog:",
"eslint-plugin-import": "catalog:",
"eslint-plugin-jest": "catalog:",
"eslint-plugin-light": "latest",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "catalog:",
"eslint-plugin-react-hooks": "catalog:",
"eslint-plugin-tailwindcss": "catalog:",
"eslint-plugin-vue": "catalog:",
"glob": "catalog:",
"less": "catalog:",
"lint-staged": "catalog:",
"miniprogram-api-typings": "catalog:miniprogram",
"postcss-less": "catalog:",
"postcss-rpx-transform": "catalog:",
"stylelint": "catalog:",
"stylelint-config-common": "catalog:",
"stylelint-config-standard": "catalog:",
"stylelint-less": "catalog:",
"stylelint-scss": "catalog:",
"t-comm": "catalog:",
"tslib": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vue-tsc": "catalog:",
"zrender": "catalog:"
},
"lint-staged": {
"*.{ts,js,vue}": [
"eslint --fix"
]
}
}