pixi-rainman-game-engine 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -0
- package/package.json +48 -0
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Rainman pixi game engine
|
|
2
|
+
|
|
3
|
+
This repository contains all of the mechanics that used in rainman games.
|
|
4
|
+
|
|
5
|
+
### Scripts
|
|
6
|
+
|
|
7
|
+
1. To build library
|
|
8
|
+
```sh
|
|
9
|
+
npm run build
|
|
10
|
+
```
|
|
11
|
+
2. Lint project
|
|
12
|
+
```sh
|
|
13
|
+
npm run lint
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
### Game engine structure
|
|
17
|
+
|
|
18
|
+
Code for the game engine contains in the `src` directory. For create an feature you should add new directory into `src` directory. For example: `freeSpins` and in this folder contains all of the mechanics.
|
|
19
|
+
|
|
20
|
+
In utils directory there all of the utility functions and types.
|
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pixi-rainman-game-engine",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "This repository contains all of the mechanics that used in rainman games.",
|
|
5
|
+
"main": "dist/index.ts",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "rm -rf dist && tsc",
|
|
9
|
+
"lint": "eslint src/** --fix",
|
|
10
|
+
"prepare": "husky"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [],
|
|
13
|
+
"type": "module",
|
|
14
|
+
"author": "@niceguys",
|
|
15
|
+
"license": "ISC",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/niceguyspl/app-rainman-engine.git"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist",
|
|
22
|
+
"README.md"
|
|
23
|
+
],
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"pixi-spine": "^4.0.4",
|
|
26
|
+
"pixi.js": "^7.4.0"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@types/node": "^20.11.19",
|
|
30
|
+
"@typescript-eslint/eslint-plugin": "^7.0.2",
|
|
31
|
+
"@typescript-eslint/parser": "^7.0.2",
|
|
32
|
+
"eslint": "^8.57.0",
|
|
33
|
+
"eslint-config-prettier": "^9.1.0",
|
|
34
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
35
|
+
"eslint-plugin-simple-import-sort": "^12.0.0",
|
|
36
|
+
"eslint-plugin-sort-class-members": "^1.20.0",
|
|
37
|
+
"eslint-prettier-config": "^1.0.1",
|
|
38
|
+
"husky": "^9.0.11",
|
|
39
|
+
"prettier": "^3.2.5",
|
|
40
|
+
"pretty-quick": "^4.0.0",
|
|
41
|
+
"tsc": "^2.0.4",
|
|
42
|
+
"typescript": "^5.3.3"
|
|
43
|
+
},
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/niceguyspl/app-rainman-engine/issues"
|
|
46
|
+
},
|
|
47
|
+
"homepage": "https://github.com/niceguyspl/app-rainman-engine#readme"
|
|
48
|
+
}
|