-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@offbit-ai/reflow",
"version": "0.2.10",
"description": "Reflow is a modular flow-based programming runtime that executes actor-model DAGs for data pipelines, real-time media, visual tooling, and optional ML/CV workloads. This package is the official Node.js SDK.",
"main": "reflow.js",
"module": "reflow.mjs",
"types": "reflow.d.ts",
"exports": {
".": {
"browser": "./reflow.browser.mjs",
"import": "./reflow.mjs",
"require": "./reflow.js",
"types": "./reflow.d.ts"
},
"./browser": {
"import": "./reflow.browser.mjs",
"types": "./reflow.browser.d.ts"
},
"./native": {
"require": "./index.js",
"types": "./index.d.ts"
}
},
"license": "MIT OR Apache-2.0",
"author": "Offbit AI",
"repository": {
"type": "git",
"url": "git+https://github.com/offbit-ai/reflow.git",
"directory": "sdk/node"
},
"bugs": {
"url": "https://github.com/offbit-ai/reflow/issues"
},
"homepage": "https://github.com/offbit-ai/reflow#readme",
"keywords": [
"reflow",
"flow-based-programming",
"fbp",
"actor-model",
"dag",
"workflow",
"napi"
],
"napi": {
"name": "reflow-runtime",
"triples": {
"defaults": true,
"additional": [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-pc-windows-msvc"
]
}
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"test": "node test/_run.cjs"
},
"devDependencies": {
"@napi-rs/cli": "^2.18.4"
},
"files": [
"reflow.js",
"reflow.mjs",
"reflow.browser.mjs",
"reflow.browser.d.ts",
"reflow.d.ts",
"index.js",
"index.d.ts",
"*.node",
"wasm/"
]
}