brickflow 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.
Files changed (1) hide show
  1. package/package.json +36 -0
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "brickflow",
3
+ "version": "0.0.1",
4
+ "description": "Typed domain failures, structural dependency injection, composable Layers, Signals, and engine-neutral execution for TypeScript.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/yanncabral/flow.git"
8
+ },
9
+ "homepage": "https://github.com/yanncabral/flow#readme",
10
+ "bugs": {
11
+ "url": "https://github.com/yanncabral/flow/issues"
12
+ },
13
+ "type": "module",
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "exports": {
18
+ ".": {
19
+ "types": "./dist/index.d.ts",
20
+ "import": "./dist/index.js"
21
+ }
22
+ },
23
+ "types": "./dist/index.d.ts",
24
+ "sideEffects": false,
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "scripts": {
29
+ "build": "tsup",
30
+ "test": "bun test",
31
+ "typecheck": "tsc -p tsconfig.json --noEmit"
32
+ },
33
+ "dependencies": {
34
+ "ts-pattern": "^5.8.0"
35
+ }
36
+ }