-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.91 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@nodetool-ai/node-sdk",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"version": "0.7.0-rc.40",
"description": "Node SDK: BaseNode, NodeRegistry, and example nodes",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "node ../../scripts/build-typescript-workspace.mjs",
"test": "vitest run",
"test:metadata": "vitest run tests/metadata.test.ts",
"test:mutation": "stryker run",
"test:mutation:crash": "stryker run stryker.crash.config.json",
"test:crash-fuzz": "vitest run --config vitest.crash.config.ts",
"test:watch": "vitest",
"lint": "tsc --noEmit"
},
"dependencies": {
"@nodetool-ai/config": "*",
"@nodetool-ai/kernel": "*",
"@nodetool-ai/protocol": "*",
"@nodetool-ai/runtime": "*",
"acorn": "^8.16.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@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"
},
"./code-analysis": {
"nodetool-dev": "./src/code-analysis.ts",
"types": "./dist/code-analysis.d.ts",
"import": "./dist/code-analysis.js",
"default": "./dist/code-analysis.js"
},
"./code-body": {
"nodetool-dev": "./src/code-body.ts",
"types": "./dist/code-body.d.ts",
"import": "./dist/code-body.js",
"default": "./dist/code-body.js"
},
"./js-script-materialize": {
"nodetool-dev": "./src/js-script-materialize.ts",
"types": "./dist/js-script-materialize.d.ts",
"import": "./dist/js-script-materialize.js",
"default": "./dist/js-script-materialize.js"
},
"./cost-estimate": {
"types": "./dist/cost-estimate.d.ts",
"import": "./dist/cost-estimate.js",
"default": "./dist/cost-estimate.js"
},
"./pricing-params": {
"types": "./dist/pricing-params.d.ts",
"import": "./dist/pricing-params.js",
"default": "./dist/pricing-params.js"
},
"./sandbox-pack-discovery": {
"nodetool-dev": "./src/sandbox-pack-discovery.ts",
"types": "./dist/sandbox-pack-discovery.d.ts",
"import": "./dist/sandbox-pack-discovery.js",
"default": "./dist/sandbox-pack-discovery.js"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nodetool-ai/nodetool.git",
"directory": "packages/node-sdk"
},
"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",
"sdk",
"node-sdk",
"basenode",
"node-registry",
"type-system"
]
}