-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
114 lines (114 loc) · 3.34 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@pixi/layers",
"version": "1.0.5",
"description": "PixiJS v6 plugin, allows to change rendering order of containers without changing the scene graph.",
"author": "Ivan Popelyshev",
"contributors": [
"Ivan Popelyshev <[email protected]>"
],
"main": "./dist/pixi-layers.js",
"module": "./lib/pixi-layers.es.js",
"bundle": "./dist/pixi-layers.umd.js",
"namespace": "PIXI.display",
"types": "./index.d.ts",
"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": "rimraf dist/* lib/* compile",
"start": "run-s watch",
"watch": "rollup -cw scripts/rollup.config.js",
"prebuild": "run-s clean lint types",
"build": "rollup -c scripts/rollup.config.js",
"postbuild": "run-s build:types",
"build:prod": "cross-env NODE_ENV=production run-s build",
"prebuild:types": "rimraf compile",
"build:types": "tsc --outDir compile --declaration && api-extractor run && node scripts/injectGlobalMixins",
"lint": "eslint ./src",
"types": "tsc -noEmit",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"postversion": "run-s build:prod",
"postpublish": "git push && git push --tags",
"prepack": "clean-package",
"postpack": "clean-package restore",
"docs": "typedoc --out ./docs/ --readme README.md ./src/",
"unit-test": "floss --path test --"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"clean-package": {
"indent": 2,
"remove": [
"clean-package",
"scripts",
"engines",
"devDependencies",
"eslintConfig"
]
},
"files": [
"dist/",
"lib/",
"index.d.ts",
"global.d.ts",
"LICENSE",
"package.json",
"README.md"
],
"peerDependencies": {
"@pixi/canvas-renderer": "^6.0.4",
"@pixi/constants": "^6.0.4",
"@pixi/core": "^6.0.4",
"@pixi/display": "^6.0.4",
"@pixi/math": "^6.0.4",
"@pixi/settings": "^6.0.4",
"@pixi/utils": "^6.0.4"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.17.1",
"@pixi-build-tools/rollup-configurator": "~1.0.11",
"@pixi/canvas-renderer": "^6.0.4",
"@pixi/constants": "^6.0.4",
"@pixi/core": "^6.0.4",
"@pixi/display": "^6.0.4",
"@pixi/eslint-config": "^2.0.1",
"@pixi/extract": "^6.0.4",
"@pixi/math": "^6.0.4",
"@pixi/settings": "^6.0.4",
"@pixi/utils": "^6.0.4",
"@rollup/plugin-node-resolve": "^8.4.0",
"@types/eventemitter3": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"clean-package": "^1.0.1",
"chai": "^4.3.3",
"cross-env": "^7.0.3",
"del": "^2.2.0",
"electron": "^9.4.0",
"eslint": "^7.21.0",
"npm-run-all": "^4.1.5",
"floss": "^3.0.0",
"jsdoc": "^3.4.0",
"mkdirp": "^0.5.1",
"prepend": "=1.0.2",
"relative-deps": "^1.0.6",
"rimraf": "^2.5.3",
"rollup": "^2.50.5",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^7.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"tslib": "^2.2.0",
"typescript": "^4.3.2"
}
}