@makefully/adaptfully 2.1.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/CHANGELOG.md +64 -0
- package/LICENSE +21 -0
- package/README.md +430 -0
- package/bin/wrapfully-deploy.js +7 -0
- package/lib/node/archive.js +34 -0
- package/lib/node/config.js +42 -0
- package/lib/node/deploy.js +69 -0
- package/lib/node/distribution.js +138 -0
- package/lib/node/index.js +18 -0
- package/lib/node/report.js +42 -0
- package/lib/runtime/auth/_helpers.js +38 -0
- package/lib/runtime/auth/dev-auth.js +78 -0
- package/lib/runtime/auth/google-auth.js +176 -0
- package/lib/runtime/auth/steam-auth.js +50 -0
- package/lib/runtime/core.js +61 -0
- package/lib/runtime/platform.js +89 -0
- package/package.json +61 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@makefully/adaptfully",
|
|
3
|
+
"version": "2.1.0",
|
|
4
|
+
"description": "Platform abstraction and Wrapfully deploy client for Makefully games",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./lib/node/index.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./lib/node/index.js",
|
|
9
|
+
"./runtime/*": "./lib/runtime/*",
|
|
10
|
+
"./deploy": "./lib/node/deploy.js",
|
|
11
|
+
"./package.json": "./package.json"
|
|
12
|
+
},
|
|
13
|
+
"bin": {
|
|
14
|
+
"wrapfully-deploy": "bin/wrapfully-deploy.js"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"bin",
|
|
18
|
+
"lib",
|
|
19
|
+
"CHANGELOG.md",
|
|
20
|
+
"LICENSE",
|
|
21
|
+
"README.md"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"deploy": "node bin/wrapfully-deploy.js",
|
|
25
|
+
"test": "node --test test/*.test.js"
|
|
26
|
+
},
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "git+https://github.com/Makefully-Studios/adaptfully.git"
|
|
30
|
+
},
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/Makefully-Studios/adaptfully/issues"
|
|
33
|
+
},
|
|
34
|
+
"homepage": "https://github.com/Makefully-Studios/adaptfully#readme",
|
|
35
|
+
"keywords": [
|
|
36
|
+
"adaptfully",
|
|
37
|
+
"wrapfully",
|
|
38
|
+
"auth",
|
|
39
|
+
"platform",
|
|
40
|
+
"deploy",
|
|
41
|
+
"build",
|
|
42
|
+
"cordova",
|
|
43
|
+
"electron"
|
|
44
|
+
],
|
|
45
|
+
"contributors": [
|
|
46
|
+
"Derek Detweiler <derek@makefullystudios.com>"
|
|
47
|
+
],
|
|
48
|
+
"license": "MIT",
|
|
49
|
+
"publishConfig": {
|
|
50
|
+
"access": "public",
|
|
51
|
+
"provenance": true
|
|
52
|
+
},
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": ">=18"
|
|
55
|
+
},
|
|
56
|
+
"dependencies": {
|
|
57
|
+
"archiver": "^7.0.1",
|
|
58
|
+
"axios": "^1.7.9",
|
|
59
|
+
"unzip-stream": "^0.3.4"
|
|
60
|
+
}
|
|
61
|
+
}
|