-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.86 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
{
"name": "@nodetool-ai/fal-nodes",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"version": "0.7.0-rc.40",
"description": "FAL AI nodes for nodetool",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "node ../../scripts/build-typescript-workspace.mjs && node -e \"const fs=require('node:fs');fs.cpSync('src/fal-manifest.json','dist/fal-manifest.json');fs.cpSync('src/generated','dist/generated',{recursive:true})\"",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit"
},
"dependencies": {
"@fal-ai/client": "^1.9.4",
"@nodetool-ai/config": "*",
"@nodetool-ai/node-sdk": "*",
"@nodetool-ai/runtime": "*"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.2",
"vitest": "^5.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./fal-manifest.json": "./dist/fal-manifest.json",
"./unit-pricing-catalog": {
"nodetool-dev": "./src/unit-pricing-catalog.ts",
"types": "./dist/unit-pricing-catalog.d.ts",
"import": "./dist/unit-pricing-catalog.js",
"default": "./dist/unit-pricing-catalog.js"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nodetool-ai/nodetool.git",
"directory": "packages/fal-nodes"
},
"homepage": "https://nodetool.ai",
"bugs": {
"url": "https://github.com/nodetool-ai/nodetool/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"nodetool",
"ai",
"workflow",
"workflow-automation",
"typescript",
"ai-nodes",
"no-code",
"visual-programming",
"workflow-nodes",
"fal",
"fal-ai",
"image-generation",
"flux",
"text-to-image"
]
}