-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "phixi",
"version": "0.1.0",
"description": "Bridge library to use pixi.js like phina.js",
"homepage": "https://github.com/pentamania/phixi",
"repository": "github:pentamania/phixi",
"author": "pentamania",
"license": "MIT",
"main": "lib/phixi.js",
"module": "lib/phixi.esm.js",
"types": "types/index.d.ts",
"scripts": {
"clean": "rimraf lib dist types",
"format": "prettier --write \"{src,test}/**/*.{js,ts}\"",
"format:check": "prettier --list-different \"{src,test}/**/*.{js,ts}\"",
"docs": "rimraf docs && typedoc --out docs src/index.ts && touch docs/.nojekyll",
"typecheck": "tsc -p . --noEmit",
"dev": "rollup -c -w",
"build": "rollup -c"
},
"files": [
"dist",
"lib",
"src",
"types"
],
"keywords": [
"pixi.js",
"phina.js"
],
"peerDependencies": {
"phina.js": "0.2.x",
"pixi.js": "5.x"
},
"dependencies": {
"@types/phina.js": "github:negiwine/phina.js.d.ts"
},
"devDependencies": {
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-terser": "^0.4.1",
"pixi.js": "^5.3.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-license": "^2.2.0",
"rollup-plugin-typescript2": "^0.34.1",
"typedoc": "^0.22.8",
"typescript": "^4.7.4"
}
}