slot-server 1.0.0

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/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "slot-server",
3
+ "version": "1.0.0",
4
+ "author": "Bakari Levy",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/bakarilevy/slot-server"
8
+ },
9
+ "main": "./dist/index.cjs",
10
+ "module": "./dist/index.js",
11
+ "devDependencies": {
12
+ "tsup": "^8.5.1",
13
+ "typescript": "^6.0.3"
14
+ },
15
+ "exports": {
16
+ ".": {
17
+ "types": "./dist/index.d.ts",
18
+ "import": "./dist/index.js",
19
+ "require": "./dist/index.cjs"
20
+ }
21
+ },
22
+ "description": "Server side library for the Slot Engine client - config, state, spin evaluation, bonuses, history.",
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "keywords": ["slot", "game", "engine", "galacean", "casino", "slots"],
27
+ "license": "MIT",
28
+ "scripts": {
29
+ "build": "tsup",
30
+ "prepublishOnly": "npm run build"
31
+ },
32
+ "type": "module",
33
+ "types": "./dist/index.d.ts"
34
+ }