@ankhorage/studio 0.0.1

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/README.md ADDED
@@ -0,0 +1,17 @@
1
+ <!-- markdownlint-disable MD013 MD033 -->
2
+ <!-- This file is generated by Paradox. Do not edit manually. -->
3
+
4
+ # @ankhorage/studio
5
+
6
+ ![license: MIT](././paradox/badges/license.svg) ![npm: v0.0.1](././paradox/badges/npm.svg) ![runtime: bun](././paradox/badges/runtime.svg) ![typescript: strict](././paradox/badges/typescript.svg) ![eslint: checked](././paradox/badges/eslint.svg) ![prettier: checked](././paradox/badges/prettier.svg) ![build: checked](././paradox/badges/build.svg) ![tests: checked](././paradox/badges/tests.svg) ![docs: paradox](././paradox/badges/docs.svg)
7
+
8
+ Standalone Studio authoring package for Ankhorage apps.
9
+
10
+ ## Generated documentation
11
+
12
+ - [Interactive documentation app](././paradox/index.html)
13
+ - [Public API reference](././paradox/exports.md)
14
+ - [Component registry](././paradox/components.md)
15
+ - [Architecture overview](././paradox/diagrams/architecture-overview.mmd)
16
+ - [Module relationships](././paradox/diagrams/module-relationships.mmd)
17
+ - [Export graph](././paradox/diagrams/export-graph.mmd)
@@ -0,0 +1,8 @@
1
+ export declare const STUDIO_PACKAGE_NAME: "@ankhorage/studio";
2
+ export interface StudioPackageBoundary {
3
+ readonly owns: readonly string[];
4
+ readonly consumes: readonly string[];
5
+ readonly doesNotOwn: readonly string[];
6
+ }
7
+ export declare const STUDIO_PACKAGE_BOUNDARY: StudioPackageBoundary;
8
+ //# 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,mBAAmB,EAAG,mBAA4B,CAAC;AAEhE,MAAM,WAAW,qBAAqB;IACpC,QAAQ,CAAC,IAAI,EAAE,SAAS,MAAM,EAAE,CAAC;IACjC,QAAQ,CAAC,QAAQ,EAAE,SAAS,MAAM,EAAE,CAAC;IACrC,QAAQ,CAAC,UAAU,EAAE,SAAS,MAAM,EAAE,CAAC;CACxC;AAED,eAAO,MAAM,uBAAuB,EAAE,qBAgBrC,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,19 @@
1
+ export const STUDIO_PACKAGE_NAME = '@ankhorage/studio';
2
+ export const STUDIO_PACKAGE_BOUNDARY = {
3
+ owns: ['Studio authoring contracts', 'Studio product contracts'],
4
+ consumes: [
5
+ '@ankhorage/runtime',
6
+ '@ankhorage/expo-runtime',
7
+ '@ankhorage/templates',
8
+ '@ankhorage/ankh',
9
+ ],
10
+ doesNotOwn: [
11
+ 'generic runtime renderer behavior',
12
+ 'generic runtime actions or bindings',
13
+ 'Expo runtime planning',
14
+ 'generated-app overlay code',
15
+ 'template catalog content',
16
+ 'root command bus behavior',
17
+ ],
18
+ };
19
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,mBAAmB,GAAG,mBAA4B,CAAC;AAQhE,MAAM,CAAC,MAAM,uBAAuB,GAA0B;IAC5D,IAAI,EAAE,CAAC,4BAA4B,EAAE,0BAA0B,CAAC;IAChE,QAAQ,EAAE;QACR,oBAAoB;QACpB,yBAAyB;QACzB,sBAAsB;QACtB,iBAAiB;KAClB;IACD,UAAU,EAAE;QACV,mCAAmC;QACnC,qCAAqC;QACrC,uBAAuB;QACvB,4BAA4B;QAC5B,0BAA0B;QAC1B,2BAA2B;KAC5B;CACF,CAAC"}
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "@ankhorage/studio",
3
+ "version": "0.0.1",
4
+ "description": "Studio authoring package for Ankhorage apps",
5
+ "license": "MIT",
6
+ "homepage": "https://github.com/ankhorage/studio#readme",
7
+ "bugs": {
8
+ "url": "https://github.com/ankhorage/studio/issues"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/ankhorage/studio.git"
13
+ },
14
+ "publishConfig": {
15
+ "access": "public"
16
+ },
17
+ "type": "module",
18
+ "main": "./dist/index.js",
19
+ "types": "./dist/index.d.ts",
20
+ "sideEffects": false,
21
+ "files": [
22
+ "dist",
23
+ "README.md",
24
+ "LICENSE"
25
+ ],
26
+ "exports": {
27
+ ".": {
28
+ "types": "./dist/index.d.ts",
29
+ "import": "./dist/index.js"
30
+ }
31
+ },
32
+ "scripts": {
33
+ "build": "tsc -p tsconfig.build.json",
34
+ "typecheck": "tsc --noEmit -p tsconfig.json",
35
+ "type-check": "bun run typecheck",
36
+ "lint": "ankhorage-eslint . --max-warnings=0",
37
+ "lint:fix": "ankhorage-eslint . --fix --max-warnings=0",
38
+ "format": "ankhorage-prettier --write .",
39
+ "format:check": "ankhorage-prettier --check .",
40
+ "knip": "ankhorage-knip",
41
+ "test": "bun test",
42
+ "docs": "paradox",
43
+ "changeset": "changeset",
44
+ "changeset:status": "changeset status --since=origin/main",
45
+ "version-packages": "changeset version"
46
+ },
47
+ "keywords": [
48
+ "ankhorage",
49
+ "studio",
50
+ "authoring",
51
+ "react-native",
52
+ "app-builder"
53
+ ],
54
+ "devDependencies": {
55
+ "@ankhorage/devtools": "^1.1.0",
56
+ "@ankhorage/paradox": "^0.1.6",
57
+ "@changesets/cli": "^2.31.0",
58
+ "@types/bun": "^1.3.13",
59
+ "@types/node": "^25.6.0",
60
+ "typescript": "^5.9.3"
61
+ },
62
+ "packageManager": "bun@1.3.13"
63
+ }