-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathimportmap.php
More file actions
109 lines (108 loc) · 5.6 KB
/
Copy pathimportmap.php
File metadata and controls
109 lines (108 loc) · 5.6 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
<?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 array<string, array{ // Import name as key, description of the imported file as value
* path: string, // Logical, relative or absolute path to the file
* type?: 'js'|'css'|'json', // Type of the file, defaults to 'js'
* entrypoint?: bool, // Whether the file is an entrypoint, for 'js' only
* }|array{
* version: string, // Version of the remote package
* package_specifier?: string, // Remote "package-name/path" specifier, defaults to the import name
* type?: 'js'|'css'|'json',
* entrypoint?: bool,
* }>
*/
return [
'app' => ['path' => './assets/app.js', 'entrypoint' => true],
'@symfony/stimulus-bundle' => ['path' => './vendor/symfony/stimulus-bundle/assets/dist/loader.js'],
'@hotwired/stimulus' => ['version' => '3.2.2'],
'@hotwired/turbo' => ['version' => '8.0.23'],
'@simplewebauthn/browser' => ['version' => '13.3.0'],
'js-beautify' => ['version' => '2.0.3'],
'@tiptap/core' => ['version' => '3.29.0'],
'@tiptap/starter-kit' => ['version' => '3.29.0'],
'@tiptap/extension-image' => ['version' => '3.29.0'],
'@tiptap/extension-link' => ['version' => '3.29.0'],
'@tiptap/extension-text-align' => ['version' => '3.29.0'],
'@tiptap/extension-table' => ['version' => '3.29.0'],
'@tiptap/extension-underline' => ['version' => '3.29.0'],
'@tiptap/extension-text-style' => ['version' => '3.29.0'],
'@tiptap/extension-dropcursor' => ['version' => '3.29.0'],
'@tiptap/extension-gapcursor' => ['version' => '3.29.0'],
'@tiptap/pm/transform' => ['version' => '3.29.0'],
'@tiptap/pm/commands' => ['version' => '3.29.0'],
'@tiptap/pm/state' => ['version' => '3.29.0'],
'@tiptap/pm/model' => ['version' => '3.29.0'],
'@tiptap/pm/schema-list' => ['version' => '3.29.0'],
'@tiptap/pm/view' => ['version' => '3.29.0'],
'@tiptap/pm/keymap' => ['version' => '3.29.0'],
'@tiptap/extension-blockquote' => ['version' => '3.29.0'],
'@tiptap/extension-bold' => ['version' => '3.29.0'],
'@tiptap/extension-code' => ['version' => '3.29.0'],
'@tiptap/extension-code-block' => ['version' => '3.29.0'],
'@tiptap/extension-document' => ['version' => '3.29.0'],
'@tiptap/extension-hard-break' => ['version' => '3.29.0'],
'@tiptap/extension-heading' => ['version' => '3.29.0'],
'@tiptap/extension-horizontal-rule' => ['version' => '3.29.0'],
'@tiptap/extension-italic' => ['version' => '3.29.0'],
'@tiptap/extension-list' => ['version' => '3.29.0'],
'@tiptap/extension-paragraph' => ['version' => '3.29.0'],
'@tiptap/extension-strike' => ['version' => '3.29.0'],
'@tiptap/extension-text' => ['version' => '3.29.0'],
'@tiptap/extensions' => ['version' => '3.29.0'],
'linkifyjs' => ['version' => '4.3.3'],
'@tiptap/pm/tables' => ['version' => '3.29.0'],
'prosemirror-transform' => ['version' => '1.12.0'],
'prosemirror-commands' => ['version' => '1.7.1'],
'prosemirror-state' => ['version' => '1.4.4'],
'prosemirror-model' => ['version' => '1.25.11'],
'prosemirror-schema-list' => ['version' => '1.5.1'],
'prosemirror-view' => ['version' => '1.42.2'],
'prosemirror-keymap' => ['version' => '1.2.3'],
'@tiptap/core/jsx-runtime' => ['version' => '3.29.0'],
'@tiptap/pm/dropcursor' => ['version' => '3.29.0'],
'@tiptap/pm/gapcursor' => ['version' => '3.29.0'],
'@tiptap/pm/history' => ['version' => '3.29.0'],
'prosemirror-tables' => ['version' => '1.8.5'],
'orderedmap' => ['version' => '2.1.1'],
'w3c-keyname' => ['version' => '2.2.8'],
'prosemirror-dropcursor' => ['version' => '1.8.3'],
'prosemirror-gapcursor' => ['version' => '1.4.1'],
'prosemirror-history' => ['version' => '1.5.0'],
'prosemirror-view/style/prosemirror.min.css' => ['version' => '1.42.2', 'type' => 'css'],
'prosemirror-tables/style/tables.min.css' => ['version' => '1.8.5', 'type' => 'css'],
'rope-sequence' => ['version' => '1.3.4'],
'prosemirror-gapcursor/style/gapcursor.min.css' => ['version' => '1.4.1', 'type' => 'css'],
'@tiptap/extension-table-row' => ['version' => '3.29.0'],
'@tiptap/extension-table-cell' => ['version' => '3.29.0'],
'@tiptap/extension-table-header' => ['version' => '3.29.0'],
'codemirror' => ['version' => '6.0.2'],
'@codemirror/lang-html' => ['version' => '6.4.11'],
'@codemirror/autocomplete' => ['version' => '6.20.3'],
'@codemirror/view' => ['version' => '6.43.6'],
'@codemirror/state' => ['version' => '6.7.1'],
'@codemirror/language' => ['version' => '6.12.4'],
'@codemirror/commands' => ['version' => '6.10.4'],
'@codemirror/search' => ['version' => '6.7.1'],
'@codemirror/lint' => ['version' => '6.9.7'],
'@lezer/html' => ['version' => '1.3.13'],
'@codemirror/lang-css' => ['version' => '6.3.1'],
'@codemirror/lang-javascript' => ['version' => '6.2.5'],
'style-mod' => ['version' => '4.1.3'],
'crelt' => ['version' => '1.0.7'],
'@marijn/find-cluster-break' => ['version' => '1.0.3'],
'@lezer/common' => ['version' => '1.5.2'],
'@lezer/highlight' => ['version' => '1.2.3'],
'@lezer/lr' => ['version' => '1.4.10'],
'@lezer/css' => ['version' => '1.3.4'],
'@lezer/javascript' => ['version' => '1.5.4'],
];