@forgezero/runtime 0.1.0 → 0.1.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/package.json CHANGED
@@ -1,248 +1,260 @@
1
1
  {
2
- "//": "Publishing happens from an operator's machine, not CI \u2014 CLAUDE.md records that the absence of CI is deliberate. npm's `provenance` attests a tarball was built by a recognised CI provider from a named commit, so it cannot be produced here: it was set, and the first publish failed with `Automatic provenance generation not supported for provider: null`. A setting that can never be satisfied is worse than none, because it reads as a guarantee nobody is getting. Restore it the day this publishes from CI, and not before.",
3
- "name": "@forgezero/runtime",
4
- "version": "0.1.0",
5
- "type": "module",
6
- "publishConfig": {
7
- "access": "public"
8
- },
9
- "exports": {
10
- "./jobs": {
11
- "types": "./dist/jobs.d.ts",
12
- "default": "./dist/jobs.js"
13
- },
14
- "./queue": {
15
- "types": "./dist/queue.d.ts",
16
- "default": "./dist/queue.js"
17
- },
18
- "./outbox": {
19
- "types": "./dist/outbox.d.ts",
20
- "default": "./dist/outbox.js"
21
- },
22
- "./audit": {
23
- "types": "./dist/audit.d.ts",
24
- "default": "./dist/audit.js"
25
- },
26
- "./backup": {
27
- "types": "./dist/backup.d.ts",
28
- "default": "./dist/backup.js"
29
- },
30
- "./notify": {
31
- "types": "./dist/notify.d.ts",
32
- "default": "./dist/notify.js"
33
- },
34
- "./notify/templates": {
35
- "types": "./dist/notify-templates.d.ts",
36
- "default": "./dist/notify-templates.js"
37
- },
38
- "./schema": {
39
- "types": "./dist/schema.d.ts",
40
- "default": "./dist/schema.js"
41
- },
42
- "./schema/typebox": {
43
- "types": "./dist/schema-typebox.d.ts",
44
- "default": "./dist/schema-typebox.js"
45
- },
46
- "./calendar": {
47
- "types": "./dist/calendar.d.ts",
48
- "default": "./dist/calendar.js"
49
- },
50
- "./identity": {
51
- "types": "./dist/identity.d.ts",
52
- "default": "./dist/identity.js"
53
- },
54
- "./totp": {
55
- "types": "./dist/totp.d.ts",
56
- "default": "./dist/totp.js"
57
- },
58
- "./otpauth": {
59
- "types": "./dist/otpauth.d.ts",
60
- "default": "./dist/otpauth.js"
61
- },
62
- "./serial": {
63
- "types": "./dist/serial.d.ts",
64
- "default": "./dist/serial.js"
65
- },
66
- "./pipeline": {
67
- "types": "./dist/pipeline.d.ts",
68
- "default": "./dist/pipeline.js"
69
- },
70
- "./compliance": {
71
- "types": "./dist/compliance.d.ts",
72
- "default": "./dist/compliance.js"
73
- },
74
- "./finance/discounts": {
75
- "types": "./dist/finance/discounts.d.ts",
76
- "default": "./dist/finance/discounts.js"
77
- },
78
- "./finance/money": {
79
- "types": "./dist/finance/money.d.ts",
80
- "default": "./dist/finance/money.js"
81
- },
82
- "./finance/storage": {
83
- "types": "./dist/finance/storage.d.ts",
84
- "default": "./dist/finance/storage.js"
85
- },
86
- "./finance/custody": {
87
- "types": "./dist/finance/custody.d.ts",
88
- "default": "./dist/finance/custody.js"
89
- },
90
- "./finance/tax": {
91
- "types": "./dist/finance/tax.d.ts",
92
- "default": "./dist/finance/tax.js"
93
- },
94
- "./finance/derive": {
95
- "types": "./dist/finance/derive.d.ts",
96
- "default": "./dist/finance/derive.js"
97
- },
98
- "./finance/venues": {
99
- "types": "./dist/finance/venues.d.ts",
100
- "default": "./dist/finance/venues.js"
101
- },
102
- "./finance/ledger": {
103
- "types": "./dist/finance/ledger.d.ts",
104
- "default": "./dist/finance/ledger.js"
105
- },
106
- "./finance/rates": {
107
- "types": "./dist/finance/rates.d.ts",
108
- "default": "./dist/finance/rates.js"
109
- },
110
- "./finance/transfers": {
111
- "types": "./dist/finance/transfers.d.ts",
112
- "default": "./dist/finance/transfers.js"
113
- },
114
- "./finance/chain": {
115
- "types": "./dist/finance/chain.d.ts",
116
- "default": "./dist/finance/chain.js"
117
- },
118
- "./finance/chain-addresses": {
119
- "types": "./dist/finance/chain-addresses.d.ts",
120
- "default": "./dist/finance/chain-addresses.js"
121
- },
122
- "./finance/chain-deposits": {
123
- "types": "./dist/finance/chain-deposits.d.ts",
124
- "default": "./dist/finance/chain-deposits.js"
125
- },
126
- "./finance/chain-withdrawals": {
127
- "types": "./dist/finance/chain-withdrawals.d.ts",
128
- "default": "./dist/finance/chain-withdrawals.js"
129
- },
130
- "./finance/chain-reconcile": {
131
- "types": "./dist/finance/chain-reconcile.d.ts",
132
- "default": "./dist/finance/chain-reconcile.js"
133
- },
134
- "./finance/market": {
135
- "types": "./dist/finance/market.d.ts",
136
- "default": "./dist/finance/market.js"
137
- },
138
- "./finance/commission": {
139
- "types": "./dist/finance/commission.d.ts",
140
- "default": "./dist/finance/commission.js"
141
- },
142
- "./passkey": {
143
- "types": "./dist/passkey.d.ts",
144
- "default": "./dist/passkey.js"
145
- },
146
- "./phrase": {
147
- "types": "./dist/phrase.d.ts",
148
- "default": "./dist/phrase.js"
149
- },
150
- "./ssh-agent": {
151
- "types": "./dist/ssh-agent.d.ts",
152
- "default": "./dist/ssh-agent.js"
153
- },
154
- "./slip10": {
155
- "types": "./dist/slip10.d.ts",
156
- "default": "./dist/slip10.js"
157
- },
158
- "./ssh-cert": {
159
- "types": "./dist/ssh-cert.d.ts",
160
- "default": "./dist/ssh-cert.js"
161
- },
162
- "./openssh": {
163
- "types": "./dist/openssh.d.ts",
164
- "default": "./dist/openssh.js"
165
- },
166
- "./importers": {
167
- "types": "./dist/importers.d.ts",
168
- "default": "./dist/importers.js"
169
- },
170
- "./snp": {
171
- "types": "./dist/snp.d.ts",
172
- "default": "./dist/snp.js"
173
- }
174
- },
175
- "scripts": {
176
- "check": "tsc --noEmit",
177
- "build": "bun build src/jobs.ts src/queue.ts src/serial.ts src/outbox.ts src/audit.ts src/backup.ts src/notify.ts src/notify-templates.ts src/calendar.ts src/compliance.ts src/pipeline.ts src/totp.ts src/otpauth.ts src/identity.ts src/slip10.ts src/openssh.ts src/ssh-cert.ts src/importers.ts src/snp.ts src/passkey.ts src/phrase.ts src/ssh-agent.ts src/schema.ts src/schema-typebox.ts src/finance/discounts.ts src/finance/money.ts src/finance/storage.ts src/finance/custody.ts src/finance/tax.ts src/finance/derive.ts src/finance/venues.ts src/finance/ledger.ts src/finance/rates.ts src/finance/transfers.ts src/finance/chain.ts src/finance/chain-addresses.ts src/finance/chain-deposits.ts src/finance/chain-withdrawals.ts src/finance/chain-reconcile.ts src/finance/market.ts src/finance/commission.ts --root src --outdir dist --target browser --format esm --packages external && tsc --emitDeclarationOnly --declaration --noEmit false --outDir dist",
178
- "prepublishOnly": "bun run check && bun run build"
179
- },
180
- "dependencies": {
181
- "@forgezero/access": "^0.1.0"
182
- },
183
- "peerDependencies": {
184
- "@noble/curves": "^2.2.0",
185
- "@noble/post-quantum": "^0.6.1",
186
- "@noble/hashes": "^2.2.0",
187
- "@sinclair/typebox": "^0.34.0",
188
- "@scure/bip39": "^2.2.0"
189
- },
190
- "peerDependenciesMeta": {
191
- "@noble/curves": {
192
- "optional": true
193
- },
194
- "@noble/post-quantum": {
195
- "optional": true
196
- },
197
- "@noble/hashes": {
198
- "optional": true
199
- },
200
- "@sinclair/typebox": {
201
- "optional": true
202
- },
203
- "@scure/bip39": {
204
- "optional": true
205
- }
206
- },
207
- "devDependencies": {
208
- "typescript": "^5.6.0",
209
- "@types/bun": "latest",
210
- "@sinclair/typebox": "^0.34.0",
211
- "@noble/curves": "^2.2.0",
212
- "@noble/post-quantum": "^0.6.1",
213
- "@scure/bip39": "^2.2.0"
214
- },
215
- "description": "The machinery a service needs behind its request handlers: jobs, keyed queues, a transactional outbox, a hash-chained audit trail, templated mail, encrypted backups and schema validation.",
216
- "keywords": [
217
- "jobs",
218
- "scheduler",
219
- "queue",
220
- "outbox",
221
- "audit",
222
- "hash-chain",
223
- "backup",
224
- "notifications",
225
- "json-schema",
226
- "validation",
227
- "calendar",
228
- "billing-period",
229
- "working-days"
230
- ],
231
- "license": "MIT",
232
- "homepage": "https://forgezero.net/docs/runtime",
233
- "repository": {
234
- "type": "git",
235
- "url": "git+https://github.com/axxra/forgezero.git",
236
- "directory": "packages/runtime"
237
- },
238
- "bugs": "https://github.com/axxra/forgezero/issues",
239
- "sideEffects": false,
240
- "files": [
241
- "dist",
242
- "README.md",
243
- "LICENSE",
244
- "contracts/src",
245
- "contracts/test",
246
- "contracts/foundry.toml"
247
- ]
2
+ "//": "Publishing happens from an operator's machine, not CI \u2014 CLAUDE.md records that the absence of CI is deliberate. npm's `provenance` attests a tarball was built by a recognised CI provider from a named commit, so it cannot be produced here: it was set, and the first publish failed with `Automatic provenance generation not supported for provider: null`. A setting that can never be satisfied is worse than none, because it reads as a guarantee nobody is getting. Restore it the day this publishes from CI, and not before.",
3
+ "name": "@forgezero/runtime",
4
+ "version": "0.1.1",
5
+ "type": "module",
6
+ "publishConfig": {
7
+ "access": "public"
8
+ },
9
+ "exports": {
10
+ "./jobs": {
11
+ "types": "./dist/jobs.d.ts",
12
+ "default": "./dist/jobs.js"
13
+ },
14
+ "./queue": {
15
+ "types": "./dist/queue.d.ts",
16
+ "default": "./dist/queue.js"
17
+ },
18
+ "./outbox": {
19
+ "types": "./dist/outbox.d.ts",
20
+ "default": "./dist/outbox.js"
21
+ },
22
+ "./audit": {
23
+ "types": "./dist/audit.d.ts",
24
+ "default": "./dist/audit.js"
25
+ },
26
+ "./backup": {
27
+ "types": "./dist/backup.d.ts",
28
+ "default": "./dist/backup.js"
29
+ },
30
+ "./notify": {
31
+ "types": "./dist/notify.d.ts",
32
+ "default": "./dist/notify.js"
33
+ },
34
+ "./notify/templates": {
35
+ "types": "./dist/notify-templates.d.ts",
36
+ "default": "./dist/notify-templates.js"
37
+ },
38
+ "./schema": {
39
+ "types": "./dist/schema.d.ts",
40
+ "default": "./dist/schema.js"
41
+ },
42
+ "./schema/typebox": {
43
+ "types": "./dist/schema-typebox.d.ts",
44
+ "default": "./dist/schema-typebox.js"
45
+ },
46
+ "./calendar": {
47
+ "types": "./dist/calendar.d.ts",
48
+ "default": "./dist/calendar.js"
49
+ },
50
+ "./identity": {
51
+ "types": "./dist/identity.d.ts",
52
+ "default": "./dist/identity.js"
53
+ },
54
+ "./totp": {
55
+ "types": "./dist/totp.d.ts",
56
+ "default": "./dist/totp.js"
57
+ },
58
+ "./otpauth": {
59
+ "types": "./dist/otpauth.d.ts",
60
+ "default": "./dist/otpauth.js"
61
+ },
62
+ "./serial": {
63
+ "types": "./dist/serial.d.ts",
64
+ "default": "./dist/serial.js"
65
+ },
66
+ "./pipeline": {
67
+ "types": "./dist/pipeline.d.ts",
68
+ "default": "./dist/pipeline.js"
69
+ },
70
+ "./compliance": {
71
+ "types": "./dist/compliance.d.ts",
72
+ "default": "./dist/compliance.js"
73
+ },
74
+ "./finance/discounts": {
75
+ "types": "./dist/finance/discounts.d.ts",
76
+ "default": "./dist/finance/discounts.js"
77
+ },
78
+ "./finance/money": {
79
+ "types": "./dist/finance/money.d.ts",
80
+ "default": "./dist/finance/money.js"
81
+ },
82
+ "./finance/storage": {
83
+ "types": "./dist/finance/storage.d.ts",
84
+ "default": "./dist/finance/storage.js"
85
+ },
86
+ "./finance/custody": {
87
+ "types": "./dist/finance/custody.d.ts",
88
+ "default": "./dist/finance/custody.js"
89
+ },
90
+ "./finance/tax": {
91
+ "types": "./dist/finance/tax.d.ts",
92
+ "default": "./dist/finance/tax.js"
93
+ },
94
+ "./finance/derive": {
95
+ "types": "./dist/finance/derive.d.ts",
96
+ "default": "./dist/finance/derive.js"
97
+ },
98
+ "./finance/venues": {
99
+ "types": "./dist/finance/venues.d.ts",
100
+ "default": "./dist/finance/venues.js"
101
+ },
102
+ "./finance/ledger": {
103
+ "types": "./dist/finance/ledger.d.ts",
104
+ "default": "./dist/finance/ledger.js"
105
+ },
106
+ "./finance/rates": {
107
+ "types": "./dist/finance/rates.d.ts",
108
+ "default": "./dist/finance/rates.js"
109
+ },
110
+ "./finance/transfers": {
111
+ "types": "./dist/finance/transfers.d.ts",
112
+ "default": "./dist/finance/transfers.js"
113
+ },
114
+ "./finance/chain": {
115
+ "types": "./dist/finance/chain.d.ts",
116
+ "default": "./dist/finance/chain.js"
117
+ },
118
+ "./finance/chain-addresses": {
119
+ "types": "./dist/finance/chain-addresses.d.ts",
120
+ "default": "./dist/finance/chain-addresses.js"
121
+ },
122
+ "./finance/chain-deposits": {
123
+ "types": "./dist/finance/chain-deposits.d.ts",
124
+ "default": "./dist/finance/chain-deposits.js"
125
+ },
126
+ "./finance/chain-withdrawals": {
127
+ "types": "./dist/finance/chain-withdrawals.d.ts",
128
+ "default": "./dist/finance/chain-withdrawals.js"
129
+ },
130
+ "./finance/chain-reconcile": {
131
+ "types": "./dist/finance/chain-reconcile.d.ts",
132
+ "default": "./dist/finance/chain-reconcile.js"
133
+ },
134
+ "./finance/market": {
135
+ "types": "./dist/finance/market.d.ts",
136
+ "default": "./dist/finance/market.js"
137
+ },
138
+ "./finance/commission": {
139
+ "types": "./dist/finance/commission.d.ts",
140
+ "default": "./dist/finance/commission.js"
141
+ },
142
+ "./passkey": {
143
+ "types": "./dist/passkey.d.ts",
144
+ "default": "./dist/passkey.js"
145
+ },
146
+ "./custody-share": {
147
+ "types": "./dist/custody-share.d.ts",
148
+ "default": "./dist/custody-share.js"
149
+ },
150
+ "./custody-crypto": {
151
+ "types": "./dist/custody-crypto.d.ts",
152
+ "default": "./dist/custody-crypto.js"
153
+ },
154
+ "./phrase": {
155
+ "types": "./dist/phrase.d.ts",
156
+ "default": "./dist/phrase.js"
157
+ },
158
+ "./ssh-agent": {
159
+ "types": "./dist/ssh-agent.d.ts",
160
+ "default": "./dist/ssh-agent.js"
161
+ },
162
+ "./slip10": {
163
+ "types": "./dist/slip10.d.ts",
164
+ "default": "./dist/slip10.js"
165
+ },
166
+ "./ssh-cert": {
167
+ "types": "./dist/ssh-cert.d.ts",
168
+ "default": "./dist/ssh-cert.js"
169
+ },
170
+ "./openssh": {
171
+ "types": "./dist/openssh.d.ts",
172
+ "default": "./dist/openssh.js"
173
+ },
174
+ "./importers": {
175
+ "types": "./dist/importers.d.ts",
176
+ "default": "./dist/importers.js"
177
+ },
178
+ "./snp": {
179
+ "types": "./dist/snp.d.ts",
180
+ "default": "./dist/snp.js"
181
+ }
182
+ },
183
+ "scripts": {
184
+ "check": "tsc --noEmit",
185
+ "build": "bun build src/jobs.ts src/queue.ts src/serial.ts src/outbox.ts src/audit.ts src/backup.ts src/notify.ts src/notify-templates.ts src/calendar.ts src/compliance.ts src/pipeline.ts src/totp.ts src/otpauth.ts src/identity.ts src/slip10.ts src/openssh.ts src/ssh-cert.ts src/importers.ts src/snp.ts src/passkey.ts src/custody-crypto.ts src/custody-share.ts src/phrase.ts src/ssh-agent.ts src/schema.ts src/schema-typebox.ts src/finance/discounts.ts src/finance/money.ts src/finance/storage.ts src/finance/custody.ts src/finance/tax.ts src/finance/derive.ts src/finance/venues.ts src/finance/ledger.ts src/finance/rates.ts src/finance/transfers.ts src/finance/chain.ts src/finance/chain-addresses.ts src/finance/chain-deposits.ts src/finance/chain-withdrawals.ts src/finance/chain-reconcile.ts src/finance/market.ts src/finance/commission.ts --root src --outdir dist --target browser --format esm --packages external && tsc --emitDeclarationOnly --declaration --noEmit false --outDir dist",
186
+ "prepublishOnly": "bun run check && bun run build"
187
+ },
188
+ "dependencies": {
189
+ "@forgezero/access": "^0.1.0"
190
+ },
191
+ "peerDependencies": {
192
+ "@noble/ciphers": "^2.2.0",
193
+ "@noble/curves": "^2.2.0",
194
+ "@noble/post-quantum": "^0.6.1",
195
+ "@noble/hashes": "^2.2.0",
196
+ "@sinclair/typebox": "^0.34.0",
197
+ "@scure/bip39": "^2.2.0"
198
+ },
199
+ "peerDependenciesMeta": {
200
+ "@noble/ciphers": {
201
+ "optional": true
202
+ },
203
+ "@noble/curves": {
204
+ "optional": true
205
+ },
206
+ "@noble/post-quantum": {
207
+ "optional": true
208
+ },
209
+ "@noble/hashes": {
210
+ "optional": true
211
+ },
212
+ "@sinclair/typebox": {
213
+ "optional": true
214
+ },
215
+ "@scure/bip39": {
216
+ "optional": true
217
+ }
218
+ },
219
+ "devDependencies": {
220
+ "typescript": "^5.6.0",
221
+ "@types/bun": "latest",
222
+ "@sinclair/typebox": "^0.34.0",
223
+ "@noble/curves": "^2.2.0",
224
+ "@noble/post-quantum": "^0.6.1",
225
+ "@scure/bip39": "^2.2.0"
226
+ },
227
+ "description": "The machinery a service needs behind its request handlers: jobs, keyed queues, a transactional outbox, a hash-chained audit trail, templated mail, encrypted backups and schema validation.",
228
+ "keywords": [
229
+ "jobs",
230
+ "scheduler",
231
+ "queue",
232
+ "outbox",
233
+ "audit",
234
+ "hash-chain",
235
+ "backup",
236
+ "notifications",
237
+ "json-schema",
238
+ "validation",
239
+ "calendar",
240
+ "billing-period",
241
+ "working-days"
242
+ ],
243
+ "license": "MIT",
244
+ "homepage": "https://forgezero.net/docs/runtime",
245
+ "repository": {
246
+ "type": "git",
247
+ "url": "git+https://github.com/axxra/forgezero.git",
248
+ "directory": "packages/runtime"
249
+ },
250
+ "bugs": "https://github.com/axxra/forgezero/issues",
251
+ "sideEffects": false,
252
+ "files": [
253
+ "dist",
254
+ "README.md",
255
+ "LICENSE",
256
+ "contracts/src",
257
+ "contracts/test",
258
+ "contracts/foundry.toml"
259
+ ]
248
260
  }