-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
executable file
·108 lines (108 loc) · 2.39 KB
/
package.json
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
{
"name": "ext-pdf-viewer",
"namespace": "PdfViewer",
"format": "1",
"version": "1.0.3",
"creator": "enovision",
"summary": "ExtJS Panel to view PDF files",
"detailedDescription": "ExtJS Panel to view PDF files",
"type": "code",
"requires": [
"font-awesome"
],
"css": [],
"resources": [
{
"path": "resources",
"output": "shared"
}
],
"slicer": {
"js": [
{
"path": "${package.dir}/sass/example/custom.js",
"isWidgetManifest": true
}
]
},
"framework": "ext",
"toolkit": "classic",
"theme": "ext-theme-classic",
"output": "${package.dir}/build",
"sass": {
"namespace": "Ext.pdf.viewer",
"etc": [
"${package.dir}/sass/etc/all.scss",
"${package.dir}/${toolkit.name}/sass/etc/all.scss"
],
"var": [
"${package.dir}/sass/var",
"${package.dir}/${toolkit.name}/sass/var"
],
"src": [
"${package.dir}/sass/src",
"${package.dir}/${toolkit.name}/sass/src"
]
},
"classpath": [
"${package.dir}/src",
"${package.dir}/${toolkit.name}/src"
],
"overrides": [
"${package.dir}/overrides",
"${package.dir}/${toolkit.name}/overrides",
"${package.dir}/locale/${package.locale}"
],
"example": {
"path": [
"${package.dir}/examples"
]
},
"production": {
"css": [
{
"path": "resources/ext-pdf-viewer/lib/pdf.js/minified/text_layer_builder.css",
"remote": true
}
],
"js": [
{
"path": "resources/ext-pdf-viewer/lib/pdf.js/minified/compatibility.js",
"remote": true
},
{
"path": "resources/ext-pdf-viewer/lib/pdf.js/minified/pdf.js",
"remote": true
},
{
"path": "resources/ext-pdf-viewer/lib/pdf.js/minified/text_layer_builder.js",
"remote": true
},
{
"path": "resources/ext-pdf-viewer/lib/pdf.js/minified/pdf.worker.js",
"remote": true
}
]
},
"development": {
"css": [
{
"path": "resources/lib/pdf.js/minified/text_layer_builder.css"
}
],
"js": [
{
"path": "resources/lib/pdf.js/minified/compatibility.js"
},
{
"path": "resources/lib/pdf.js/minified/text_layer_builder.js"
},
{
"path": "resources/lib/pdf.js/minified/pdf.js"
},
{
"path": "resources/lib/pdf.js/minified/pdf.worker.js"
}
]
}
}