-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 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
{
"name": "stake-engine-client",
"version": "1.0.7",
"description": "Lightweight TypeScript client extracted from Stake Engine web-sdk for RGS (Remote Gaming Server) API communication. Contains only essential backend communication code without Svelte dependencies or slot game scripts.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"demo": "vite",
"build:demo": "vite build",
"prepublishOnly": "npm run build"
},
"keywords": [
"stake-engine",
"rgs",
"gaming",
"casino",
"api-client",
"typescript"
],
"author": "Planet Blue Invasion Team",
"license": "MIT",
"devDependencies": {
"typescript": "^5.0.0",
"vite": "^7.3.0"
},
"peerDependencies": {
"typescript": ">=4.0.0"
},
"files": [
"dist/**/*",
"index.js",
"index.d.ts",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/raw-fun-gaming/stake-engine-client.git"
},
"bugs": {
"url": "https://github.com/raw-fun-gaming/stake-engine-client/issues"
},
"homepage": "https://github.com/raw-fun-gaming/stake-engine-client#readme"
}