@esotericsoftware/spine-canvaskit 4.2.48
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.
- package/LICENSE +26 -0
- package/README.md +3 -0
- package/dist/iife/spine-canvaskit.js +11921 -0
- package/dist/iife/spine-canvaskit.js.map +7 -0
- package/dist/iife/spine-canvaskit.min.js +2 -0
- package/dist/index.d.ts +28 -0
- package/dist/index.js +169 -0
- package/package.json +41 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Spine Runtimes License Agreement
|
|
2
|
+
Last updated May 1, 2019. Replaces all prior versions.
|
|
3
|
+
|
|
4
|
+
Copyright (c) 2013-2019, Esoteric Software LLC
|
|
5
|
+
|
|
6
|
+
Integration of the Spine Runtimes into software or otherwise creating
|
|
7
|
+
derivative works of the Spine Runtimes is permitted under the terms and
|
|
8
|
+
conditions of Section 2 of the Spine Editor License Agreement:
|
|
9
|
+
http://esotericsoftware.com/spine-editor-license
|
|
10
|
+
|
|
11
|
+
Otherwise, it is permitted to integrate the Spine Runtimes into software
|
|
12
|
+
or otherwise create derivative works of the Spine Runtimes (collectively,
|
|
13
|
+
"Products"), provided that each user of the Products must obtain their own
|
|
14
|
+
Spine Editor license and redistribution of the Products in any form must
|
|
15
|
+
include this license and copyright notice.
|
|
16
|
+
|
|
17
|
+
THIS SOFTWARE IS PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY EXPRESS
|
|
18
|
+
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
19
|
+
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
|
|
20
|
+
NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
21
|
+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
22
|
+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, BUSINESS
|
|
23
|
+
INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND ON ANY
|
|
24
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
25
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
26
|
+
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
package/README.md
ADDED