@arkcit/engine-render-layer 0.3.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,72 @@
1
+ {
2
+ "name": "@arkcit/engine-render-layer",
3
+ "private": false,
4
+ "version": "0.3.0",
5
+ "type": "module",
6
+ "sideEffects": false,
7
+ "description": "Workspace extraction candidate for Arkcit render-layer contracts and resolution.",
8
+ "license": "UNLICENSED",
9
+ "keywords": [
10
+ "arkcit",
11
+ "engine",
12
+ "render-layer",
13
+ "resolution"
14
+ ],
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/Arkcit/ui-orchestrator.git"
18
+ },
19
+ "homepage": "https://github.com/Arkcit/ui-orchestrator",
20
+ "bugs": {
21
+ "url": "https://github.com/Arkcit/ui-orchestrator/issues"
22
+ },
23
+ "main": "./dist/index.js",
24
+ "module": "./dist/index.js",
25
+ "types": "./dist/index.d.ts",
26
+ "files": [
27
+ "dist"
28
+ ],
29
+ "publishConfig": {
30
+ "access": "public"
31
+ },
32
+ "exports": {
33
+ ".": {
34
+ "types": "./dist/index.d.ts",
35
+ "import": "./dist/index.js",
36
+ "default": "./dist/index.js"
37
+ },
38
+ "./contracts": {
39
+ "types": "./dist/contracts.d.ts",
40
+ "import": "./dist/contracts.js",
41
+ "default": "./dist/contracts.js"
42
+ },
43
+ "./bindings": {
44
+ "types": "./dist/bindings.d.ts",
45
+ "import": "./dist/bindings.js",
46
+ "default": "./dist/bindings.js"
47
+ },
48
+ "./resolution": {
49
+ "types": "./dist/resolution.d.ts",
50
+ "import": "./dist/resolution.js",
51
+ "default": "./dist/resolution.js"
52
+ }
53
+ },
54
+ "engines": {
55
+ "node": ">=20.0.0"
56
+ },
57
+ "scripts": {
58
+ "build": "tsup --config tsup.config.ts",
59
+ "typecheck": "tsc --noEmit -p tsconfig.json",
60
+ "test:smoke": "node tests/run-all.mjs",
61
+ "test": "npm run test:smoke"
62
+ },
63
+ "dependencies": {
64
+ "@arkcit/engine-core": "^0.3.0",
65
+ "@arkcit/engine-runtime": "^0.3.0",
66
+ "@arkcit/engine-schema": "^0.3.0"
67
+ },
68
+ "devDependencies": {
69
+ "tsup": "^8.5.1",
70
+ "typescript": "~5.9.3"
71
+ }
72
+ }