-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
78 lines (78 loc) · 1.93 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
{
"name": "@pixi/lights",
"version": "4.1.0",
"description": "A plugin that adds deferred lighting to PixiJS v6",
"author": "Ivan Popelyshev",
"contributors": [
"Ivan Popelyshev <[email protected]>",
"Matt Karl <[email protected]>"
],
"extensionConfig": {
"namespace": "PIXI.lights",
"lint": [
"src"
],
"globals": {
"@pixi/layers": "PIXI.layers"
},
"docsName": "PixiJS Lights",
"docsCopyright": "Copyright © 2015 - 2022 Ivan Popelyshev",
"docsTitle": "PixiJS Lights API Documentation",
"docsDescription": "Documentation for PixiJS Lights library",
"docsKeyword": "docs, documentation, pixi, pixijs, rendering, pixi-lights, display, pixi-display, javascript"
},
"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"
}
},
"homepage": "http://www.pixijs.com/",
"bugs": "https://github.com/pixijs/lights/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pixijs/lights.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",
"deploy": "xs deploy",
"test": "xs build,docs"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"files": [
"dist/",
"lib/"
],
"peerDependencies": {
"@pixi/core": "^7.0.0",
"@pixi/display": "^7.0.0",
"@pixi/layers": "^2.0.1",
"@pixi/mesh": "^7.0.0"
},
"devDependencies": {
"@pixi/core": "^7.0.0",
"@pixi/display": "^7.0.0",
"@pixi/extension-scripts": "^1.8.1",
"@pixi/layers": "^2.0.1",
"@pixi/mesh": "^7.0.0"
}
}