-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 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
{
"name": "@pietal.dev/engine",
"description": "PIXI v8, v7, v6 compatible: inspired by Unity, reactive Game Framework: GameObject, StateMachine, CircleBody, PolygonBody, Physics, Sprite, Container, Animator, TextureAtlas, Resources loading",
"version": "9.23.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "chef-express docs --port 3000",
"start:demo": "chef-express docs/demo --port 3000",
"demo": "yarn build && yarn start",
"dev": "webpack serve",
"docs": "yarn build && yarn start",
"build:demo": "webpack",
"postbuild:demo": "cp -r demo/*.* docs/demo",
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "yarn build:docs",
"prebuild:docs": "rimraf docs",
"build:docs": "typedoc --customCss typedoc.css",
"postbuild:docs": "yarn build:demo && prettier docs --write && yarn docs-from-master",
"docs-from-master-macos": "find docs -type f -name '*.html' -exec sed -i '' -r 's_/blob/[^/]+/_/blob/main/_g' {} +",
"docs-from-master-linux": "find docs -type f -name '*.html' -exec sed -i -r 's_/blob/[^/]+/_/blob/main/_g' {} +",
"docs-from-master": "yarn docs-from-master-macos || yarn docs-from-master-linux",
"lint": "eslint 'src/**/*.ts' --fix",
"format": "prettier . --write",
"test": "jest --silent --verbose --forceExit",
"test-v6": "yarn add pixi.js@^6 pixi.js-legacy@^6 -D && node test-build",
"test-v7": "yarn add pixi.js@^7 pixi.js-legacy@^7 -D && node test-build",
"test-v8": "yarn add pixi.js@^8 pixi.js-legacy@^7 -D && node test-build",
"test-build": "yarn test-v6 && yarn test-v7 && yarn test-v8",
"precommit": "yarn lint && yarn build && yarn test && yarn format",
"amend": "yarn precommit && git commit -a --am --no-edit"
},
"files": [
"dist/*.*"
],
"license": "MIT",
"resolutions": {
"canvas": "^2.11.2",
"json5": "^2.2.2",
"minimist": "^1.2.6",
"terser": "^5.14.2"
},
"dependencies": {
"@pietal.dev/cache": "^2.0.2",
"detect-collisions": "^9.24.0",
"inject.min": "^1.3.1",
"pixi-stats": "^3.1.1",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/offscreencanvas": "^2019.7.3",
"babel-jest": "^29.7.0",
"chef-express": "^2.4.2",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"jest": "29.7.0",
"pixi-shim": "^2.5.3",
"pixi.js": "^8",
"pixi.js-legacy": "^7",
"prettier": "^3.3.3",
"ts-loader": "^9.5.1",
"typedoc": "^0.26.11",
"typescript": "^5",
"typescript-eslint": "^8.14.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"peerDependencies": {
"pixi.js": "^6 || ^7 || ^8"
},
"keywords": [
"unity",
"gamedev",
"gameobject",
"prefab",
"state",
"machine",
"sprite",
"circle",
"body",
"polygon",
"physics",
"container",
"scene",
"animator",
"webgl",
"pixi.js"
],
"repository": "git://github.com/Prozi/oneforall.git",
"bugs": {
"url": "https://github.com/Prozi/oneforall/issues"
},
"homepage": "https://prozi.github.io/oneforall/"
}