-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
86 lines (86 loc) · 2.22 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
{
"name": "@pixi/node",
"version": "7.3.0",
"description": "Bundle for PixiJS with support for NodeJS",
"homepage": "http://pixijs.com/",
"bugs": "https://github.com/pixijs/node/issues",
"repository": {
"type": "git",
"url": "https://github.com/pixijs/node.git"
},
"license": "MIT",
"author": "PixiJS Team",
"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"
}
},
"files": [
"lib"
],
"engines": {
"node": ">=16"
},
"scripts": {
"build": "xs build",
"docs": "xs docs",
"release": "xs release",
"watch": "xs watch",
"lint": "xs lint",
"types": "xs types",
"lint:fix": "xs lint --fix",
"validate": "node test/import.mjs && node test/require.cjs",
"test": "xs test",
"coverage": "xs test --coverage --maxWorkers=4"
},
"extensionConfig": {
"jestConfig": "jest.config.mjs",
"environments": [
"node"
]
},
"devDependencies": {
"@pixi/extension-scripts": "^2.0.0"
},
"dependencies": {
"@pixi/app": "^7.3.0",
"@pixi/assets": "^7.3.0",
"@pixi/core": "^7.3.0",
"@pixi/display": "^7.3.0",
"@pixi/extensions": "^7.3.0",
"@pixi/extract": "^7.3.0",
"@pixi/filter-alpha": "^7.3.0",
"@pixi/filter-blur": "^7.3.0",
"@pixi/filter-color-matrix": "^7.3.0",
"@pixi/filter-displacement": "^7.3.0",
"@pixi/filter-fxaa": "^7.3.0",
"@pixi/filter-noise": "^7.3.0",
"@pixi/graphics": "^7.3.0",
"@pixi/mesh": "^7.3.0",
"@pixi/mesh-extras": "^7.3.0",
"@pixi/mixin-cache-as-bitmap": "^7.3.0",
"@pixi/mixin-get-child-by-name": "^7.3.0",
"@pixi/mixin-get-global-position": "^7.3.0",
"@pixi/particle-container": "^7.3.0",
"@pixi/prepare": "^7.3.0",
"@pixi/sprite": "^7.3.0",
"@pixi/sprite-animated": "^7.3.0",
"@pixi/sprite-tiling": "^7.3.0",
"@pixi/spritesheet": "^7.3.0",
"@pixi/text": "^7.3.0",
"@pixi/text-bitmap": "^7.3.0",
"@types/gl": "^6.0.2",
"@xmldom/xmldom": "^0.8.6",
"canvas": "^2.9.1",
"cross-fetch": "^3.1.5",
"gl": "^6.0.1"
},
"publishConfig": {
"access": "public"
}
}