@comate/zulu 0.4.0 → 0.5.0

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 (77) hide show
  1. package/README.md +4 -0
  2. package/comate-engine/fallbackServer.js +1 -1
  3. package/comate-engine/node_modules/@comate/plugin-engine/dist/index.js +8 -8
  4. package/comate-engine/node_modules/@comate/plugin-host/dist/index.js +1 -1
  5. package/comate-engine/node_modules/@comate/plugin-host/dist/main.js +3 -3
  6. package/comate-engine/node_modules/@comate/plugin-host/dist/user-CcQDM3F-.js +44 -0
  7. package/comate-engine/node_modules/@comate/plugin-shared-internals/dist/index.d.ts +197 -16
  8. package/comate-engine/node_modules/@comate/plugin-shared-internals/dist/index.js +8 -8
  9. package/comate-engine/node_modules/@comate/preview-proxy/bin/preview.js +1 -0
  10. package/comate-engine/node_modules/@comate/preview-proxy/dist/index.js +53 -53
  11. package/comate-engine/node_modules/@comate/preview-proxy/static/comate-preview-injector.css +1 -1
  12. package/comate-engine/node_modules/@comate/preview-proxy/static/comate-preview-injector.js +1 -1
  13. package/comate-engine/node_modules/better-sqlite3/deps/download.sh +1 -1
  14. package/comate-engine/node_modules/better-sqlite3/deps/sqlite3/sqlite3.c +122 -81
  15. package/comate-engine/node_modules/better-sqlite3/deps/sqlite3/sqlite3.h +45 -45
  16. package/comate-engine/node_modules/better-sqlite3/lib/database.js +1 -1
  17. package/comate-engine/node_modules/better-sqlite3/node_modules/.bin/prebuild-install +2 -2
  18. package/comate-engine/node_modules/better-sqlite3/package.json +4 -7
  19. package/comate-engine/node_modules/better-sqlite3/src/addon.cpp +47 -0
  20. package/comate-engine/node_modules/better-sqlite3/src/better_sqlite3.cpp +44 -2164
  21. package/comate-engine/node_modules/better-sqlite3/src/objects/backup.cpp +120 -0
  22. package/comate-engine/node_modules/better-sqlite3/src/objects/backup.hpp +36 -0
  23. package/comate-engine/node_modules/better-sqlite3/src/objects/database.cpp +417 -0
  24. package/comate-engine/node_modules/better-sqlite3/src/objects/database.hpp +103 -0
  25. package/comate-engine/node_modules/better-sqlite3/src/objects/statement-iterator.cpp +113 -0
  26. package/comate-engine/node_modules/better-sqlite3/src/objects/statement-iterator.hpp +50 -0
  27. package/comate-engine/node_modules/better-sqlite3/src/objects/statement.cpp +383 -0
  28. package/comate-engine/node_modules/better-sqlite3/src/objects/statement.hpp +58 -0
  29. package/comate-engine/node_modules/better-sqlite3/src/util/bind-map.cpp +73 -0
  30. package/comate-engine/node_modules/better-sqlite3/src/util/binder.cpp +193 -0
  31. package/comate-engine/node_modules/better-sqlite3/src/util/constants.cpp +172 -0
  32. package/comate-engine/node_modules/better-sqlite3/src/util/custom-aggregate.cpp +121 -0
  33. package/comate-engine/node_modules/better-sqlite3/src/util/custom-function.cpp +59 -0
  34. package/comate-engine/node_modules/better-sqlite3/src/util/custom-table.cpp +409 -0
  35. package/comate-engine/node_modules/better-sqlite3/src/util/data-converter.cpp +17 -0
  36. package/comate-engine/node_modules/better-sqlite3/src/util/data.cpp +194 -0
  37. package/comate-engine/node_modules/better-sqlite3/src/util/helpers.cpp +109 -0
  38. package/comate-engine/node_modules/better-sqlite3/src/util/macros.cpp +63 -0
  39. package/comate-engine/node_modules/better-sqlite3/src/util/query-macros.cpp +71 -0
  40. package/comate-engine/node_modules/better-sqlite3/src/util/row-builder.cpp +49 -0
  41. package/comate-engine/package.json +8 -5
  42. package/comate-engine/plugins/demo-feature/dist/index.js +128 -61
  43. package/comate-engine/plugins/demo-feature/dist/providers/renderJsx.js +10 -1
  44. package/comate-engine/plugins/demo-timer/assets/icon.svg +2 -0
  45. package/comate-engine/plugins/demo-timer/dist/index.js +463 -0
  46. package/comate-engine/plugins/demo-timer/package.json +73 -0
  47. package/comate-engine/server.js +136 -53
  48. package/dist/bundle/index.js +8 -8
  49. package/package.json +1 -1
  50. package/comate-engine/node_modules/@comate/plugin-host/dist/user-DQgjkMe9.js +0 -44
  51. package/comate-engine/node_modules/better-sqlite3/src/better_sqlite3.hpp +0 -1036
  52. package/comate-engine/node_modules/sql.js/.devcontainer/Dockerfile +0 -76
  53. package/comate-engine/node_modules/sql.js/.devcontainer/devcontainer.json +0 -20
  54. package/comate-engine/node_modules/sql.js/.eslintrc.js +0 -68
  55. package/comate-engine/node_modules/sql.js/.jsdoc.config.json +0 -38
  56. package/comate-engine/node_modules/sql.js/.nojekyll +0 -0
  57. package/comate-engine/node_modules/sql.js/AUTHORS +0 -8
  58. package/comate-engine/node_modules/sql.js/CONTRIBUTING.md +0 -66
  59. package/comate-engine/node_modules/sql.js/LICENSE +0 -44
  60. package/comate-engine/node_modules/sql.js/README.md +0 -357
  61. package/comate-engine/node_modules/sql.js/dist/sql-asm-debug.js +0 -140661
  62. package/comate-engine/node_modules/sql.js/dist/sql-asm-memory-growth.js +0 -209
  63. package/comate-engine/node_modules/sql.js/dist/sql-asm.js +0 -209
  64. package/comate-engine/node_modules/sql.js/dist/sql-wasm-debug.js +0 -6989
  65. package/comate-engine/node_modules/sql.js/dist/sql-wasm-debug.wasm +0 -0
  66. package/comate-engine/node_modules/sql.js/dist/sql-wasm.js +0 -188
  67. package/comate-engine/node_modules/sql.js/dist/sql-wasm.wasm +0 -0
  68. package/comate-engine/node_modules/sql.js/dist/sqljs-all.zip +0 -0
  69. package/comate-engine/node_modules/sql.js/dist/sqljs-wasm.zip +0 -0
  70. package/comate-engine/node_modules/sql.js/dist/sqljs-worker-wasm.zip +0 -0
  71. package/comate-engine/node_modules/sql.js/dist/worker.sql-asm-debug.js +0 -140784
  72. package/comate-engine/node_modules/sql.js/dist/worker.sql-asm.js +0 -332
  73. package/comate-engine/node_modules/sql.js/dist/worker.sql-wasm-debug.js +0 -7112
  74. package/comate-engine/node_modules/sql.js/dist/worker.sql-wasm.js +0 -311
  75. package/comate-engine/node_modules/sql.js/documentation_index.md +0 -26
  76. package/comate-engine/node_modules/sql.js/logo.svg +0 -13
  77. package/comate-engine/node_modules/sql.js/package.json +0 -51
@@ -0,0 +1,463 @@
1
+ import { FallbackProvider, ElementChunkStream, SkillProvider, PipeHttpRequestSkillProvider } from '@comate/plugin-host';
2
+
3
+ function jsx(type, props) {
4
+ // 按照React的逻辑,`boolean`、`null`、`undefined`是不会显示出来的
5
+ const children = Array.isArray(props.children) ? props.children.filter((v)=>v != null && typeof v !== 'boolean') : props.children;
6
+ return {
7
+ type,
8
+ ...props,
9
+ children
10
+ };
11
+ }
12
+
13
+ function sleepForOneSecond() {
14
+ return new Promise((r)=>setTimeout(r, 1000));
15
+ }
16
+ function calculateCountdownTime(base, unit) {
17
+ switch(unit){
18
+ case '秒':
19
+ return 1000 * base;
20
+ case '分':
21
+ case '分钟':
22
+ return 60 * 1000 * base;
23
+ default:
24
+ return base;
25
+ }
26
+ }
27
+ class CountdownFallbackProvider extends FallbackProvider {
28
+ static{
29
+ this.description = '指定时间并开启倒计时';
30
+ }
31
+ async *handleQuery() {
32
+ const match = /(\d+)(秒|分|分钟)/.exec(this.currentContext.query);
33
+ const stream = new ElementChunkStream();
34
+ if (!match) {
35
+ yield stream.fail(/*#__PURE__*/ jsx("p", {
36
+ children: "还请提供准确的倒计时时长。"
37
+ }));
38
+ return;
39
+ }
40
+ const state = {
41
+ timer: null,
42
+ remaining: calculateCountdownTime(parseInt(match[1], 10), match[2])
43
+ };
44
+ yield stream.flush(/*#__PURE__*/ jsx("p", {
45
+ children: /*#__PURE__*/ jsx("file-link", {
46
+ to: "README.md",
47
+ line: 1
48
+ })
49
+ }));
50
+ while(state.remaining > 0){
51
+ yield stream.flushReplaceLast(/*#__PURE__*/ jsx("p", {
52
+ children: [
53
+ "还剩",
54
+ state.remaining / 1000,
55
+ "秒"
56
+ ]
57
+ }));
58
+ await sleepForOneSecond();
59
+ state.remaining -= 1000;
60
+ }
61
+ yield stream.flush(/*#__PURE__*/ jsx("p", {
62
+ children: "倒计时结束"
63
+ }));
64
+ }
65
+ }
66
+
67
+ class NowSkillProvider extends SkillProvider {
68
+ static{
69
+ this.skillName = 'getCurrentTime';
70
+ }
71
+ static{
72
+ this.description = '显示当前时间';
73
+ }
74
+ static{
75
+ this.parameters = {
76
+ type: 'object',
77
+ properties: {
78
+ type: {
79
+ type: 'string',
80
+ enum: [
81
+ '12H',
82
+ '24H'
83
+ ]
84
+ }
85
+ },
86
+ required: [
87
+ 'type'
88
+ ]
89
+ };
90
+ }
91
+ async *execute({ type }) {
92
+ const now = new Date();
93
+ const formatted = now.toLocaleTimeString([
94
+ 'en-US'
95
+ ], {
96
+ hour: '2-digit',
97
+ minute: '2-digit',
98
+ hourCycle: type === '24H' ? 'h24' : 'h12'
99
+ });
100
+ yield `现在是:${formatted}`;
101
+ }
102
+ defaultArgumentValue() {
103
+ return {
104
+ type: '24H'
105
+ };
106
+ }
107
+ }
108
+
109
+ const timezones = [
110
+ 'Africa/Abidjan',
111
+ 'Africa/Algiers',
112
+ 'Africa/Bissau',
113
+ 'Africa/Cairo',
114
+ 'Africa/Casablanca',
115
+ 'Africa/Ceuta',
116
+ 'Africa/El_Aaiun',
117
+ 'Africa/Johannesburg',
118
+ 'Africa/Juba',
119
+ 'Africa/Khartoum',
120
+ 'Africa/Lagos',
121
+ 'Africa/Maputo',
122
+ 'Africa/Monrovia',
123
+ 'Africa/Nairobi',
124
+ 'Africa/Ndjamena',
125
+ 'Africa/Sao_Tome',
126
+ 'Africa/Tripoli',
127
+ 'Africa/Tunis',
128
+ 'Africa/Windhoek',
129
+ 'America/Adak',
130
+ 'America/Anchorage',
131
+ 'America/Araguaina',
132
+ 'America/Argentina/Buenos_Aires',
133
+ 'America/Argentina/Catamarca',
134
+ 'America/Argentina/Cordoba',
135
+ 'America/Argentina/Jujuy',
136
+ 'America/Argentina/La_Rioja',
137
+ 'America/Argentina/Mendoza',
138
+ 'America/Argentina/Rio_Gallegos',
139
+ 'America/Argentina/Salta',
140
+ 'America/Argentina/San_Juan',
141
+ 'America/Argentina/San_Luis',
142
+ 'America/Argentina/Tucuman',
143
+ 'America/Argentina/Ushuaia',
144
+ 'America/Asuncion',
145
+ 'America/Bahia',
146
+ 'America/Bahia_Banderas',
147
+ 'America/Barbados',
148
+ 'America/Belem',
149
+ 'America/Belize',
150
+ 'America/Boa_Vista',
151
+ 'America/Bogota',
152
+ 'America/Boise',
153
+ 'America/Cambridge_Bay',
154
+ 'America/Campo_Grande',
155
+ 'America/Cancun',
156
+ 'America/Caracas',
157
+ 'America/Cayenne',
158
+ 'America/Chicago',
159
+ 'America/Chihuahua',
160
+ 'America/Ciudad_Juarez',
161
+ 'America/Costa_Rica',
162
+ 'America/Cuiaba',
163
+ 'America/Danmarkshavn',
164
+ 'America/Dawson',
165
+ 'America/Dawson_Creek',
166
+ 'America/Denver',
167
+ 'America/Detroit',
168
+ 'America/Edmonton',
169
+ 'America/Eirunepe',
170
+ 'America/El_Salvador',
171
+ 'America/Fort_Nelson',
172
+ 'America/Fortaleza',
173
+ 'America/Glace_Bay',
174
+ 'America/Goose_Bay',
175
+ 'America/Grand_Turk',
176
+ 'America/Guatemala',
177
+ 'America/Guayaquil',
178
+ 'America/Guyana',
179
+ 'America/Halifax',
180
+ 'America/Havana',
181
+ 'America/Hermosillo',
182
+ 'America/Indiana/Indianapolis',
183
+ 'America/Indiana/Knox',
184
+ 'America/Indiana/Marengo',
185
+ 'America/Indiana/Petersburg',
186
+ 'America/Indiana/Tell_City',
187
+ 'America/Indiana/Vevay',
188
+ 'America/Indiana/Vincennes',
189
+ 'America/Indiana/Winamac',
190
+ 'America/Inuvik',
191
+ 'America/Iqaluit',
192
+ 'America/Jamaica',
193
+ 'America/Juneau',
194
+ 'America/Kentucky/Louisville',
195
+ 'America/Kentucky/Monticello',
196
+ 'America/La_Paz',
197
+ 'America/Lima',
198
+ 'America/Los_Angeles',
199
+ 'America/Maceio',
200
+ 'America/Managua',
201
+ 'America/Manaus',
202
+ 'America/Martinique',
203
+ 'America/Matamoros',
204
+ 'America/Mazatlan',
205
+ 'America/Menominee',
206
+ 'America/Merida',
207
+ 'America/Metlakatla',
208
+ 'America/Mexico_City',
209
+ 'America/Miquelon',
210
+ 'America/Moncton',
211
+ 'America/Monterrey',
212
+ 'America/Montevideo',
213
+ 'America/New_York',
214
+ 'America/Nome',
215
+ 'America/Noronha',
216
+ 'America/North_Dakota/Beulah',
217
+ 'America/North_Dakota/Center',
218
+ 'America/North_Dakota/New_Salem',
219
+ 'America/Nuuk',
220
+ 'America/Ojinaga',
221
+ 'America/Panama',
222
+ 'America/Paramaribo',
223
+ 'America/Phoenix',
224
+ 'America/Port-au-Prince',
225
+ 'America/Porto_Velho',
226
+ 'America/Puerto_Rico',
227
+ 'America/Punta_Arenas',
228
+ 'America/Rankin_Inlet',
229
+ 'America/Recife',
230
+ 'America/Regina',
231
+ 'America/Resolute',
232
+ 'America/Rio_Branco',
233
+ 'America/Santarem',
234
+ 'America/Santiago',
235
+ 'America/Santo_Domingo',
236
+ 'America/Sao_Paulo',
237
+ 'America/Scoresbysund',
238
+ 'America/Sitka',
239
+ 'America/St_Johns',
240
+ 'America/Swift_Current',
241
+ 'America/Tegucigalpa',
242
+ 'America/Thule',
243
+ 'America/Tijuana',
244
+ 'America/Toronto',
245
+ 'America/Vancouver',
246
+ 'America/Whitehorse',
247
+ 'America/Winnipeg',
248
+ 'America/Yakutat',
249
+ 'Antarctica/Casey',
250
+ 'Antarctica/Davis',
251
+ 'Antarctica/Macquarie',
252
+ 'Antarctica/Mawson',
253
+ 'Antarctica/Palmer',
254
+ 'Antarctica/Rothera',
255
+ 'Antarctica/Troll',
256
+ 'Asia/Almaty',
257
+ 'Asia/Amman',
258
+ 'Asia/Anadyr',
259
+ 'Asia/Aqtau',
260
+ 'Asia/Aqtobe',
261
+ 'Asia/Ashgabat',
262
+ 'Asia/Atyrau',
263
+ 'Asia/Baghdad',
264
+ 'Asia/Baku',
265
+ 'Asia/Bangkok',
266
+ 'Asia/Barnaul',
267
+ 'Asia/Beirut',
268
+ 'Asia/Bishkek',
269
+ 'Asia/Chita',
270
+ 'Asia/Choibalsan',
271
+ 'Asia/Colombo',
272
+ 'Asia/Damascus',
273
+ 'Asia/Dhaka',
274
+ 'Asia/Dili',
275
+ 'Asia/Dubai',
276
+ 'Asia/Dushanbe',
277
+ 'Asia/Famagusta',
278
+ 'Asia/Gaza',
279
+ 'Asia/Hebron',
280
+ 'Asia/Ho_Chi_Minh',
281
+ 'Asia/Hong_Kong',
282
+ 'Asia/Hovd',
283
+ 'Asia/Irkutsk',
284
+ 'Asia/Jakarta',
285
+ 'Asia/Jayapura',
286
+ 'Asia/Jerusalem',
287
+ 'Asia/Kabul',
288
+ 'Asia/Kamchatka',
289
+ 'Asia/Karachi',
290
+ 'Asia/Kathmandu',
291
+ 'Asia/Khandyga',
292
+ 'Asia/Kolkata',
293
+ 'Asia/Krasnoyarsk',
294
+ 'Asia/Kuching',
295
+ 'Asia/Macau',
296
+ 'Asia/Magadan',
297
+ 'Asia/Makassar',
298
+ 'Asia/Manila',
299
+ 'Asia/Nicosia',
300
+ 'Asia/Novokuznetsk',
301
+ 'Asia/Novosibirsk',
302
+ 'Asia/Omsk',
303
+ 'Asia/Oral',
304
+ 'Asia/Pontianak',
305
+ 'Asia/Pyongyang',
306
+ 'Asia/Qatar',
307
+ 'Asia/Qostanay',
308
+ 'Asia/Qyzylorda',
309
+ 'Asia/Riyadh',
310
+ 'Asia/Sakhalin',
311
+ 'Asia/Samarkand',
312
+ 'Asia/Seoul',
313
+ 'Asia/Shanghai',
314
+ 'Asia/Singapore',
315
+ 'Asia/Srednekolymsk',
316
+ 'Asia/Taipei',
317
+ 'Asia/Tashkent',
318
+ 'Asia/Tbilisi',
319
+ 'Asia/Tehran',
320
+ 'Asia/Thimphu',
321
+ 'Asia/Tokyo',
322
+ 'Asia/Tomsk',
323
+ 'Asia/Ulaanbaatar',
324
+ 'Asia/Urumqi',
325
+ 'Asia/Ust-Nera',
326
+ 'Asia/Vladivostok',
327
+ 'Asia/Yakutsk',
328
+ 'Asia/Yangon',
329
+ 'Asia/Yekaterinburg',
330
+ 'Asia/Yerevan',
331
+ 'Atlantic/Azores',
332
+ 'Atlantic/Bermuda',
333
+ 'Atlantic/Canary',
334
+ 'Atlantic/Cape_Verde',
335
+ 'Atlantic/Faroe',
336
+ 'Atlantic/Madeira',
337
+ 'Atlantic/South_Georgia',
338
+ 'Atlantic/Stanley',
339
+ 'Australia/Adelaide',
340
+ 'Australia/Brisbane',
341
+ 'Australia/Broken_Hill',
342
+ 'Australia/Darwin',
343
+ 'Australia/Eucla',
344
+ 'Australia/Hobart',
345
+ 'Australia/Lindeman',
346
+ 'Australia/Lord_Howe',
347
+ 'Australia/Melbourne',
348
+ 'Australia/Perth',
349
+ 'Australia/Sydney',
350
+ 'Europe/Andorra',
351
+ 'Europe/Astrakhan',
352
+ 'Europe/Athens',
353
+ 'Europe/Belgrade',
354
+ 'Europe/Berlin',
355
+ 'Europe/Brussels',
356
+ 'Europe/Bucharest',
357
+ 'Europe/Budapest',
358
+ 'Europe/Chisinau',
359
+ 'Europe/Dublin',
360
+ 'Europe/Gibraltar',
361
+ 'Europe/Helsinki',
362
+ 'Europe/Istanbul',
363
+ 'Europe/Kaliningrad',
364
+ 'Europe/Kirov',
365
+ 'Europe/Kyiv',
366
+ 'Europe/Lisbon',
367
+ 'Europe/London',
368
+ 'Europe/Madrid',
369
+ 'Europe/Malta',
370
+ 'Europe/Minsk',
371
+ 'Europe/Moscow',
372
+ 'Europe/Paris',
373
+ 'Europe/Prague',
374
+ 'Europe/Riga',
375
+ 'Europe/Rome',
376
+ 'Europe/Samara',
377
+ 'Europe/Saratov',
378
+ 'Europe/Simferopol',
379
+ 'Europe/Sofia',
380
+ 'Europe/Tallinn',
381
+ 'Europe/Tirane',
382
+ 'Europe/Ulyanovsk',
383
+ 'Europe/Vienna',
384
+ 'Europe/Vilnius',
385
+ 'Europe/Volgograd',
386
+ 'Europe/Warsaw',
387
+ 'Europe/Zurich',
388
+ 'Indian/Chagos',
389
+ 'Indian/Maldives',
390
+ 'Indian/Mauritius',
391
+ 'Pacific/Apia',
392
+ 'Pacific/Auckland',
393
+ 'Pacific/Bougainville',
394
+ 'Pacific/Chatham',
395
+ 'Pacific/Easter',
396
+ 'Pacific/Efate',
397
+ 'Pacific/Fakaofo',
398
+ 'Pacific/Fiji',
399
+ 'Pacific/Galapagos',
400
+ 'Pacific/Gambier',
401
+ 'Pacific/Guadalcanal',
402
+ 'Pacific/Guam',
403
+ 'Pacific/Honolulu',
404
+ 'Pacific/Kanton',
405
+ 'Pacific/Kiritimati',
406
+ 'Pacific/Kosrae',
407
+ 'Pacific/Kwajalein',
408
+ 'Pacific/Marquesas',
409
+ 'Pacific/Nauru',
410
+ 'Pacific/Niue',
411
+ 'Pacific/Norfolk',
412
+ 'Pacific/Noumea',
413
+ 'Pacific/Pago_Pago',
414
+ 'Pacific/Palau',
415
+ 'Pacific/Pitcairn',
416
+ 'Pacific/Port_Moresby',
417
+ 'Pacific/Rarotonga',
418
+ 'Pacific/Tahiti',
419
+ 'Pacific/Tarawa',
420
+ 'Pacific/Tongatapu'
421
+ ];
422
+ class WorldTimeSkillProvider extends PipeHttpRequestSkillProvider {
423
+ static{
424
+ this.skillName = 'getTimeForTimezone';
425
+ }
426
+ static{
427
+ this.displayName = '世界时钟';
428
+ }
429
+ static{
430
+ this.description = '根据指定的时区获取当前时间';
431
+ }
432
+ static{
433
+ this.parameters = {
434
+ type: 'object',
435
+ properties: {
436
+ timezone: {
437
+ type: 'string',
438
+ description: '时区名称',
439
+ enum: timezones
440
+ }
441
+ }
442
+ };
443
+ }
444
+ async buildRequest(args) {
445
+ return {
446
+ method: 'GET',
447
+ url: `https://worldtimeapi.org/api/timezone/${args.timezone}`,
448
+ responseType: 'json'
449
+ };
450
+ }
451
+ transformResponseToText(responseData) {
452
+ const [date, time] = responseData.datetime.split(/T|\./);
453
+ return `${responseData.timezone}时区当前时间是:${date} ${time}`;
454
+ }
455
+ }
456
+
457
+ function setup({ registry }) {
458
+ registry.registerFallbackProvider('countdown', CountdownFallbackProvider);
459
+ registry.registerSkillProvider('now', NowSkillProvider);
460
+ registry.registerSkillProvider('worldTime', WorldTimeSkillProvider);
461
+ }
462
+
463
+ export { setup };
@@ -0,0 +1,73 @@
1
+ {
2
+ "private": true,
3
+ "name": "@comate-plugin/timer",
4
+ "version": "0.8.0",
5
+ "type": "module",
6
+ "scripts": {
7
+ "clean": "rm -rf dist",
8
+ "dev": "cpd dev",
9
+ "build": "tsc && cpd build",
10
+ "lint": "eslint --max-warnings=0 src"
11
+ },
12
+ "devDependencies": {
13
+ "@comate/plugin-cli": "^0.9.2",
14
+ "@comate/plugin-host": "^0.9.2",
15
+ "eslint": "^8.56.0",
16
+ "typescript": "^5.3.3"
17
+ },
18
+ "comate": {
19
+ "name": "timer",
20
+ "version": "1.0.0",
21
+ "icon": "./assets/icon.svg",
22
+ "entry": "./dist/index.js",
23
+ "displayName": "计时器",
24
+ "description": "简单的倒计时",
25
+ "keyword": [
26
+ "演示",
27
+ "计时器"
28
+ ],
29
+ "capabilities": [
30
+ {
31
+ "type": "Skill",
32
+ "name": "now",
33
+ "displayName": "当前时间",
34
+ "description": "显示当前时间"
35
+ },
36
+ {
37
+ "type": "Skill",
38
+ "name": "worldTime",
39
+ "displayName": "区域时间",
40
+ "description": "指定城市或地区显示当地时间"
41
+ },
42
+ {
43
+ "type": "Fallback",
44
+ "name": "countdown",
45
+ "displayName": "倒计时",
46
+ "description": "快速启动一个倒计时"
47
+ }
48
+ ],
49
+ "configSchema": {
50
+ "sections": [
51
+ {
52
+ "title": "基本配置",
53
+ "properties": {
54
+ "name": {
55
+ "type": "string",
56
+ "title": "名称",
57
+ "description": "必须填写名称",
58
+ "default": "anonymous"
59
+ },
60
+ "values": {
61
+ "type": "array",
62
+ "items": {
63
+ "type": "number"
64
+ },
65
+ "title": "配置值",
66
+ "description": "测试数组结构"
67
+ }
68
+ }
69
+ }
70
+ ]
71
+ }
72
+ }
73
+ }