-
Notifications
You must be signed in to change notification settings - Fork 1
/
importmap.php
136 lines (135 loc) · 3.28 KB
/
importmap.php
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
<?php
/**
* Returns the importmap for this application.
*
* - "path" is a path inside the asset mapper system. Use the
* "debug:asset-map" command to see the full list of paths.
*
* - "entrypoint" (JavaScript only) set to true for any module that will
* be used as an "entrypoint" (and passed to the importmap() Twig function).
*
* The "importmap:require" command can be used to add new entries to this file.
*/
return [
'app' => [
'path' => 'app.js',
'entrypoint' => true,
],
'battlemap-factory' => [
'path' => 'place/battlemap-factory.js',
],
'battlemap-loader' => [
'path' => 'place/battlemap-loader.js',
],
'battlemap-builder' => [
'path' => 'place/BattlemapBuilder.js',
],
'battlemap-document' => [
'path' => 'place/BattlemapDocument.js',
],
'battlemap-editor' => [
'path' => 'place/BattlemapEditor.js',
],
'legend-highlight-subscriber' => [
'path' => 'place/legend-highlight-subscriber.js',
],
'cubemap-viewer' => [
'path' => 'place/cubemap-viewer.js',
],
'dice-roller' => [
'path' => 'DicePool.js',
],
'picture-broadcasting' => [
'path' => 'picture-pusher.js',
],
'quote-broadcasting' => [
'path' => 'quote-pusher.js',
],
'wikitext' => [
'path' => 'wikitext-autocomplete.js',
],
'timeline-tree' => [
'path' => 'timeline/tree.js',
],
'wikitree' => [
'path' => 'timeline/wikitree-editable.js',
],
'selector-detailed' => [
'path' => 'selector-with-detail.js',
],
'quick-npc' => [
'path' => 'npc-graph-creation.js',
],
'autofocus' => [
'path' => 'autofocus.js',
],
'sd-gallery-search' => [
'path' => 'sd-gallery-search.js',
],
'ollama-client' => [
'path' => 'ollama-client.js',
],
'avatar-type' => [
'path' => 'avatar-type.js',
],
'cropper-utils' => [
'path' => 'crop-helper.js',
],
'mercure-client' => [
'path' => 'mercure-client.js',
],
'babylonjs' => [
'version' => '6.29.2',
],
'meshwriter' => [
'version' => '1.3.2',
],
'babylonjs-gui' => [
'version' => '6.29.2',
],
'mousetrap' => [
'version' => '1.6.5',
],
'howler' => [
'version' => '2.2.4',
],
'qrious' => [
'version' => '4.0.2',
],
'js-autocomplete' => [
'version' => '1.0.4',
],
'caret-pos' => [
'version' => '2.0.0',
],
'alpinejs' => [
'version' => '3.13.3',
],
'croppie' => [
'version' => '2.6.5',
],
'@multiavatar/multiavatar' => [
'version' => '1.0.7',
],
'swiper/swiper-bundle' => [
'version' => '11.0.5',
],
'swiper/modules/manipulation' => [
'version' => '11.0.5',
],
'ollama/browser' => [
'version' => '0.5.7',
],
'dramatron/scenario' => [
'path' => 'dramatron/Scenario.js',
],
'dramatron/extract-character-schema' => [
'path' => 'dramatron/extract-character-schema.js',
],
'dramatron/extract-place-schema' => [
'path' => 'dramatron/extract-place-schema.js',
],
'dramatron/spa' => [
'path' => 'dramatron/spa.js',
]
];