forked from stanislavfor/pixi-blit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "pixi-blit",
"version": "0.1.0",
"description": "PixiJS v5 plugin, adds advanced buffer for antialiasing and caching",
"author": "Ivan Popelyshev",
"contributors": [
"Ivan Popelyshev <[email protected]>"
],
"main": "./dist/pixi-blit.js",
"types": "./dist/pixi-blit.d.ts",
"homepage": "http://www.pixijs.com/",
"bugs": "https://github.com/pixijs/pixi-blit/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pixijs/pixi-blit.git"
},
"scripts": {
"cleanup": "rimraf dist && mkdirp dist",
"prestart": "yarn cleanup",
"start": "parallelshell \"yarn watch\"",
"watch": "tsc -w",
"prebuild": "yarn cleanup",
"make:dts": "node scripts/make_dts.js",
"build": "tsc && yarn make:dts"
},
"files": [
"dist/",
"src/",
"CONTRIBUTING.md",
"LICENSE",
"package.json",
"tsconfig.json",
"README.md"
],
"devDependencies": {
"del": "^2.2.0",
"mkdirp": "^0.5.1",
"parallelshell": "^2.0.0",
"rimraf": "^2.5.3",
"tmp": "^0.0.33",
"typescript": "^3.6.3",
"pixi.js-legacy": "^5.2.1"
}
}