-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 1.7 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
{
"name": "@pixi/gif",
"version": "3.0.1",
"description": "Animated GIF Runtime for PixiJS",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"extensionConfig": {
"docsName": "PixiJS GIF",
"docsCopyright": "PIXI Copyright © 2023 Matt Karl.",
"docsGoogleAnalytics": "UA-103772589-10",
"docsTitle": "PixiJS GIF API Documentation",
"docsDescription": "Documentation for PixiJS GIF library",
"docsKeywords": "docs, documentation, pixi, pixijs, gif, animation, html5, javascript, jsdoc"
},
"scripts": {
"start": "xs serve",
"lint": "xs lint --max-warnings=0",
"types": "xs types",
"build": "xs build",
"docs": "xs docs",
"deploy": "xs deploy",
"release": "xs release",
"test": "xs test"
},
"engines": {
"node": ">=16",
"yarn": "please-use-npm",
"npm": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pixijs-userland/gif.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"lib"
],
"keywords": [
"gif",
"animation",
"pixi",
"pixijs"
],
"author": "Matt Karl @bigtimebuddy",
"license": "MIT",
"bugs": {
"url": "https://github.com/pixijs-userland/gif/issues"
},
"homepage": "https://github.com/pixijs-userland/gif#readme",
"pre-commit": [
"lint",
"types"
],
"devDependencies": {
"pixi.js": "^8.0.0",
"@pixi/extension-scripts": "^2.4.1",
"gifuct-js": "^2.1.2",
"pre-commit": "^1.2.2"
},
"peerDependencies": {
"pixi.js": "^8.0.0"
}
}