-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.64 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
{
"name": "@nodetool-ai/blender-nodes",
"version": "0.7.0-rc.40",
"description": "NodeTool Blender headless nodes: render and mesh preparation over glTF",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "node ../../scripts/build-typescript-workspace.mjs",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit"
},
"dependencies": {
"@nodetool-ai/config": "*",
"@nodetool-ai/node-sdk": "*",
"@nodetool-ai/nodes-utils": "*",
"@nodetool-ai/protocol": "*",
"@nodetool-ai/runtime": "*",
"zod": "^4.0.0"
},
"devDependencies": {
"@nodetool-ai/model3d": "*",
"@nodetool-ai/timeline": "*",
"@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"
},
"./nodes/*": {
"types": "./dist/nodes/*.d.ts",
"import": "./dist/nodes/*.js",
"default": "./dist/nodes/*.js"
}
},
"license": "MIT",
"files": [
"dist",
"blender_ops/**/*.py",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/nodetool-ai/nodetool.git",
"directory": "packages/blender-nodes"
},
"homepage": "https://nodetool.ai",
"bugs": {
"url": "https://github.com/nodetool-ai/nodetool/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"nodetool",
"ai",
"workflow",
"workflow-automation",
"typescript",
"3d",
"3d-models",
"blender",
"render"
]
}