@jskit-ai/mobile-capacitor 0.1.82 → 0.1.84

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.
Files changed (2) hide show
  1. package/package.json +112 -2
  2. package/package.descriptor.mjs +0 -114
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jskit-ai/mobile-capacitor",
3
- "version": "0.1.82",
3
+ "version": "0.1.84",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "test": "node --test"
@@ -13,6 +13,116 @@
13
13
  "dependencies": {
14
14
  "@capacitor/browser": "^7.0.1",
15
15
  "@capacitor/core": "^7.4.3",
16
- "@jskit-ai/kernel": "0.1.146"
16
+ "@jskit-ai/kernel": "0.1.149",
17
+ "@jskit-ai/shell-web": "0.1.153"
18
+ },
19
+ "description": "Thin Capacitor client integration for JSKIT mobile-shell launch routing and auth callback completion.",
20
+ "jskit": {
21
+ "kind": "runtime",
22
+ "capabilities": {
23
+ "provides": [
24
+ "mobile.capacitor"
25
+ ],
26
+ "requires": []
27
+ },
28
+ "runtime": {
29
+ "server": {
30
+ "providers": []
31
+ },
32
+ "client": {
33
+ "providers": [
34
+ {
35
+ "entrypoint": "src/client/providers/MobileCapacitorClientProvider.js",
36
+ "export": "MobileCapacitorClientProvider"
37
+ }
38
+ ]
39
+ }
40
+ },
41
+ "lifecycle": {
42
+ "install": {
43
+ "prepare": {
44
+ "entrypoint": "src/server/buildTemplateContext.js",
45
+ "export": "prepareInstallHook"
46
+ },
47
+ "finalize": {
48
+ "entrypoint": "src/server/buildTemplateContext.js",
49
+ "export": "finalizeInstallHook",
50
+ "managesNpmInstall": true
51
+ }
52
+ }
53
+ },
54
+ "metadata": {
55
+ "apiSummary": {
56
+ "surfaces": [
57
+ {
58
+ "subpath": "./client",
59
+ "summary": "Exports the Capacitor client provider, launch adapter helpers, and mobile-shell runtime."
60
+ }
61
+ ],
62
+ "containerTokens": {
63
+ "server": [],
64
+ "client": [
65
+ "mobile.capacitor.client.runtime",
66
+ "mobile.capacitor.adapter.client"
67
+ ]
68
+ }
69
+ }
70
+ },
71
+ "mutations": {
72
+ "dependencies": {
73
+ "runtime": {
74
+ "@capacitor/android": "^7.4.3",
75
+ "@capacitor/app": "^7.1.0",
76
+ "@capacitor/browser": "^7.0.1",
77
+ "@capacitor/core": "^7.4.3",
78
+ "@jskit-ai/kernel": "0.1.149",
79
+ "@jskit-ai/shell-web": "0.1.153"
80
+ },
81
+ "dev": {
82
+ "@capacitor/cli": "^7.4.3"
83
+ }
84
+ },
85
+ "packageJson": {
86
+ "scripts": {
87
+ "mobile:dev:android": "jskit mobile android dev",
88
+ "mobile:devices:android": "jskit mobile android devices",
89
+ "mobile:sync:android": "jskit mobile android sync",
90
+ "mobile:tunnel:android": "jskit mobile android tunnel",
91
+ "mobile:restart:android": "jskit mobile android restart",
92
+ "mobile:run:android": "jskit mobile android run",
93
+ "mobile:build:web": "npm run build",
94
+ "mobile:build:android": "jskit mobile android build"
95
+ }
96
+ },
97
+ "procfile": {},
98
+ "vite": {
99
+ "proxy": []
100
+ },
101
+ "text": [],
102
+ "files": [
103
+ {
104
+ "from": "templates/capacitor.config.json",
105
+ "to": "capacitor.config.json",
106
+ "reason": "Install Capacitor shell configuration rendered from config.mobile.",
107
+ "category": "mobile-capacitor",
108
+ "id": "mobile-capacitor-config",
109
+ "templateContext": {
110
+ "entrypoint": "src/server/buildTemplateContext.js",
111
+ "export": "buildTemplateContext"
112
+ }
113
+ },
114
+ {
115
+ "from": "templates/mobile-capacitor.md",
116
+ "to": ".jskit/mobile-capacitor.md",
117
+ "reason": "Install managed mobile-shell notes for the Capacitor Android integration.",
118
+ "category": "mobile-capacitor",
119
+ "id": "mobile-capacitor-notes",
120
+ "templateContext": {
121
+ "entrypoint": "src/server/buildTemplateContext.js",
122
+ "export": "buildTemplateContext"
123
+ }
124
+ }
125
+ ]
126
+ }
17
127
  }
18
128
  }
@@ -1,114 +0,0 @@
1
- export default Object.freeze({
2
- packageVersion: 1,
3
- packageId: "@jskit-ai/mobile-capacitor",
4
- version: "0.1.82",
5
- kind: "runtime",
6
- description: "Thin Capacitor client integration for JSKIT mobile-shell launch routing and auth callback completion.",
7
- dependsOn: [
8
- "@jskit-ai/kernel",
9
- "@jskit-ai/shell-web"
10
- ],
11
- capabilities: {
12
- provides: ["mobile.capacitor"],
13
- requires: []
14
- },
15
- runtime: {
16
- server: {
17
- providers: []
18
- },
19
- client: {
20
- providers: [
21
- {
22
- entrypoint: "src/client/providers/MobileCapacitorClientProvider.js",
23
- export: "MobileCapacitorClientProvider"
24
- }
25
- ]
26
- }
27
- },
28
- lifecycle: {
29
- install: {
30
- prepare: {
31
- entrypoint: "src/server/buildTemplateContext.js",
32
- export: "prepareInstallHook"
33
- },
34
- finalize: {
35
- entrypoint: "src/server/buildTemplateContext.js",
36
- export: "finalizeInstallHook",
37
- managesNpmInstall: true
38
- }
39
- }
40
- },
41
- metadata: {
42
- apiSummary: {
43
- surfaces: [
44
- {
45
- subpath: "./client",
46
- summary: "Exports the Capacitor client provider, launch adapter helpers, and mobile-shell runtime."
47
- }
48
- ],
49
- containerTokens: {
50
- server: [],
51
- client: [
52
- "mobile.capacitor.client.runtime",
53
- "mobile.capacitor.adapter.client"
54
- ]
55
- }
56
- }
57
- },
58
- mutations: {
59
- dependencies: {
60
- runtime: {
61
- "@capacitor/android": "^7.4.3",
62
- "@capacitor/app": "^7.1.0",
63
- "@capacitor/browser": "^7.0.1",
64
- "@capacitor/core": "^7.4.3",
65
- "@jskit-ai/kernel": "0.1.146",
66
- "@jskit-ai/shell-web": "0.1.147"
67
- },
68
- dev: {
69
- "@capacitor/cli": "^7.4.3"
70
- }
71
- },
72
- packageJson: {
73
- scripts: {
74
- "mobile:dev:android": "jskit mobile android dev",
75
- "mobile:devices:android": "jskit mobile android devices",
76
- "mobile:sync:android": "jskit mobile android sync",
77
- "mobile:tunnel:android": "jskit mobile android tunnel",
78
- "mobile:restart:android": "jskit mobile android restart",
79
- "mobile:run:android": "jskit mobile android run",
80
- "mobile:build:web": "npm run build",
81
- "mobile:build:android": "jskit mobile android build"
82
- }
83
- },
84
- procfile: {},
85
- vite: {
86
- proxy: []
87
- },
88
- text: [],
89
- files: [
90
- {
91
- from: "templates/capacitor.config.json",
92
- to: "capacitor.config.json",
93
- reason: "Install Capacitor shell configuration rendered from config.mobile.",
94
- category: "mobile-capacitor",
95
- id: "mobile-capacitor-config",
96
- templateContext: {
97
- entrypoint: "src/server/buildTemplateContext.js",
98
- export: "buildTemplateContext"
99
- }
100
- },
101
- {
102
- from: "templates/mobile-capacitor.md",
103
- to: ".jskit/mobile-capacitor.md",
104
- reason: "Install managed mobile-shell notes for the Capacitor Android integration.",
105
- category: "mobile-capacitor",
106
- id: "mobile-capacitor-notes",
107
- templateContext: {
108
- entrypoint: "src/server/buildTemplateContext.js",
109
- export: "buildTemplateContext"
110
- }
111
- }
112
- ]
113
- }
114
- });