@fps-games/engine 0.0.1-beta.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.
@@ -0,0 +1,2 @@
1
+ export declare const ENGINE_BABYLON_SUBPATH = "@fps-games/engine/babylon";
2
+ //# sourceMappingURL=babylon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"babylon.d.ts","sourceRoot":"","sources":["../src/babylon.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,sBAAsB,8BAA8B,CAAC"}
@@ -0,0 +1,2 @@
1
+ export const ENGINE_BABYLON_SUBPATH = '@fps-games/engine/babylon';
2
+ //# sourceMappingURL=babylon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"babylon.js","sourceRoot":"","sources":["../src/babylon.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,sBAAsB,GAAG,2BAA2B,CAAC"}
@@ -0,0 +1,8 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "packageName": "@fps-games/engine",
4
+ "version": "0.0.1-beta.0",
5
+ "gitSha": "60da12e78ca42cadc2d62f7b9c1b2ae40bd358ad",
6
+ "distHash": "3202da4c35b63da4f00da0811d38076f34925efd7fe69ca9ee4685e422d7bca6",
7
+ "cacheKey": "0.0.1-beta.0-3202da4c35b6"
8
+ }
@@ -0,0 +1,5 @@
1
+ export declare const ENGINE_CONFIG_SUBPATH = "@fps-games/engine/config";
2
+ export interface FpsEnginePluginReference {
3
+ readonly id: string;
4
+ }
5
+ //# sourceMappingURL=config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB,6BAA6B,CAAC;AAEhE,MAAM,WAAW,wBAAwB;IACvC,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;CACrB"}
package/dist/config.js ADDED
@@ -0,0 +1,2 @@
1
+ export const ENGINE_CONFIG_SUBPATH = '@fps-games/engine/config';
2
+ //# sourceMappingURL=config.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,qBAAqB,GAAG,0BAA0B,CAAC"}
@@ -0,0 +1,7 @@
1
+ export declare const ENGINE_PACKAGE_MARKER = "@fps-games/engine";
2
+ export declare const ENGINE_PLUMBING_PHASE = "plumbing-first";
3
+ export interface FpsEngineRuntimeDataMarker {
4
+ readonly schemaVersion: 1;
5
+ readonly marker: typeof ENGINE_PACKAGE_MARKER;
6
+ }
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB,sBAAsB,CAAC;AACzD,eAAO,MAAM,qBAAqB,mBAAmB,CAAC;AAEtD,MAAM,WAAW,0BAA0B;IACzC,QAAQ,CAAC,aAAa,EAAE,CAAC,CAAC;IAC1B,QAAQ,CAAC,MAAM,EAAE,OAAO,qBAAqB,CAAC;CAC/C"}
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ export const ENGINE_PACKAGE_MARKER = '@fps-games/engine';
2
+ export const ENGINE_PLUMBING_PHASE = 'plumbing-first';
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,qBAAqB,GAAG,mBAAmB,CAAC;AACzD,MAAM,CAAC,MAAM,qBAAqB,GAAG,gBAAgB,CAAC"}
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@fps-games/engine",
3
+ "version": "0.0.1-beta.0",
4
+ "description": "Forge Play game engine runtime. Placeholder surface during the plumbing-first phase; domain packages migrate from fps-game-editor per fps-game-editor#518.",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ },
13
+ "./config": {
14
+ "types": "./dist/config.d.ts",
15
+ "import": "./dist/config.js"
16
+ },
17
+ "./babylon": {
18
+ "types": "./dist/babylon.d.ts",
19
+ "import": "./dist/babylon.js"
20
+ }
21
+ },
22
+ "files": [
23
+ "dist"
24
+ ],
25
+ "sideEffects": false,
26
+ "scripts": {
27
+ "build": "tsc -b",
28
+ "typecheck": "tsc -p tsconfig.json --noEmit"
29
+ },
30
+ "peerDependencies": {
31
+ "@babylonjs/core": "^8.0.0"
32
+ },
33
+ "peerDependenciesMeta": {
34
+ "@babylonjs/core": {
35
+ "optional": true
36
+ }
37
+ },
38
+ "publishConfig": {
39
+ "access": "public"
40
+ },
41
+ "devDependencies": {
42
+ "typescript": "^5.9.3"
43
+ }
44
+ }