-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
73 lines (73 loc) · 1.88 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
{
"name": "@pixi/layers",
"version": "2.1.0",
"description": "PixiJS plugin, allows to change rendering order of containers without changing the scene graph.",
"author": "Ivan Popelyshev",
"contributors": [
"Ivan Popelyshev <[email protected]>"
],
"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": {
"lint": [
"src"
],
"namespace": "PIXI.layers",
"docsName": "PixiJS Layers",
"docsCopyright": "Copyright © 2015 - 2022 Ivan Popelyshev",
"docsTitle": "PixiJS Layers API Documentation",
"docsDescription": "Documentation for PixiJS Layers library",
"docsKeyword": "docs, documentation, pixi, pixijs, rendering, pixi-layers, display, pixi-display, javascript, jsdoc"
},
"homepage": "http://www.pixijs.com/",
"bugs": "https://github.com/pixijs/pixi-layers/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pixijs/pixi-layers.git"
},
"scripts": {
"clean": "xs clean",
"start": "xs serve",
"watch": "xs watch",
"build": "xs build",
"lint": "xs lint",
"lint:fix": "xs lint --fix",
"types": "xs types",
"release": "xs release",
"docs": "xs docs",
"test": "xs build,docs",
"deploy": "xs deploy"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"files": [
"dist/",
"lib/",
"global.d.ts"
],
"peerDependencies": {
"@pixi/canvas-renderer": "^7.0.0",
"@pixi/core": "^7.0.0",
"@pixi/display": "^7.0.0"
},
"devDependencies": {
"@pixi/canvas-renderer": "^7.0.0",
"@pixi/core": "^7.0.0",
"@pixi/display": "^7.0.0",
"@pixi/extension-scripts": "^1.8.1"
}
}