-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3 KB
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
{
"name": "make2d",
"description": "Game FrameWork for JavaScript 2D WebGL Canvas Games",
"version": "9.38.9",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "chef-express docs/demo",
"docs": "chef-express docs",
"dev": "webpack serve",
"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 && 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 src --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",
"update": "npx npm-check-updates -u && yarn add pixi.js@^7"
},
"files": [
"dist/*.*"
],
"license": "MIT",
"resolutions": {
"json5": "^2.2.2",
"minimist": "^1.2.6"
},
"dependencies": {
"@pietal.dev/cache": "^2.0.2",
"check2d": "^9.36.4",
"inject.min": "^2.1.3",
"pixi-stats": "^5.1.7"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-proposal-decorators": "^7.28.0",
"@babel/plugin-transform-class-properties": "^7.27.1",
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@babel/preset-typescript": "^7.28.5",
"@types/jest": "^30.0.0",
"babel-jest": "^30.2.0",
"chef-express": "^3.2.3",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"jest": "30.2.0",
"pixi-shim": "^2.6.2",
"pixi.js": "^7",
"pixi.js-legacy": "^7",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"rxjs": "^7.8.2",
"ts-loader": "^9.5.4",
"typedoc": "^0.28.15",
"typescript": "^5",
"typescript-eslint": "^8.50.0",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1"
},
"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/nenjack/make2d.git",
"bugs": {
"url": "https://github.com/nenjack/make2d/issues"
},
"homepage": "https://nenjack.github.io/make2d/"
}