@plateforme-ai/lobster 2026.6.12 → 2026.6.13
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.
- package/package.json +75 -75
package/package.json
CHANGED
|
@@ -1,75 +1,75 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@plateforme-ai/lobster",
|
|
3
|
-
"version": "2026.6.
|
|
4
|
-
"description": "Workflow runtime for AI agents - deterministic pipelines with approval gates",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"ai-agent",
|
|
7
|
-
"approval",
|
|
8
|
-
"automation",
|
|
9
|
-
"lobster",
|
|
10
|
-
"openclaw",
|
|
11
|
-
"pipeline",
|
|
12
|
-
"workflow"
|
|
13
|
-
],
|
|
14
|
-
"homepage": "https://github.com/
|
|
15
|
-
"bugs": {
|
|
16
|
-
"url": "https://github.com/
|
|
17
|
-
},
|
|
18
|
-
"license": "MIT",
|
|
19
|
-
"repository": {
|
|
20
|
-
"type": "git",
|
|
21
|
-
"url": "git+https://github.com/
|
|
22
|
-
},
|
|
23
|
-
"bin": {
|
|
24
|
-
"clawd.invoke": "bin/clawd.invoke.js",
|
|
25
|
-
"lobster": "bin/lobster.js",
|
|
26
|
-
"openclaw.invoke": "bin/openclaw.invoke.js"
|
|
27
|
-
},
|
|
28
|
-
"files": [
|
|
29
|
-
"bin",
|
|
30
|
-
"dist",
|
|
31
|
-
"README.md",
|
|
32
|
-
"LICENSE",
|
|
33
|
-
"VISION.md"
|
|
34
|
-
],
|
|
35
|
-
"type": "module",
|
|
36
|
-
"main": "./dist/src/sdk/index.js",
|
|
37
|
-
"exports": {
|
|
38
|
-
".": "./dist/src/sdk/index.js",
|
|
39
|
-
"./sdk": "./dist/src/sdk/index.js",
|
|
40
|
-
"./core": "./dist/src/core/index.js",
|
|
41
|
-
"./recipes/github": "./dist/src/recipes/github/index.js"
|
|
42
|
-
},
|
|
43
|
-
"scripts": {
|
|
44
|
-
"clean": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\"",
|
|
45
|
-
"build": "pnpm clean && tsgo -p tsconfig.json",
|
|
46
|
-
"prepack": "pnpm build",
|
|
47
|
-
"typecheck": "tsgo -p tsconfig.json --noEmit",
|
|
48
|
-
"format": "oxfmt --write package.json tsconfig.json src test",
|
|
49
|
-
"format:check": "oxfmt --check package.json tsconfig.json src test",
|
|
50
|
-
"lint": "pnpm format:check && oxlint --tsconfig tsconfig.json src test",
|
|
51
|
-
"fmt": "pnpm format",
|
|
52
|
-
"test": "pnpm build && node --test dist/test/*.test.js",
|
|
53
|
-
"check:changed": "pnpm run test",
|
|
54
|
-
"test:changed": "pnpm run test",
|
|
55
|
-
"crabbox:hydrate": "crabbox actions hydrate",
|
|
56
|
-
"crabbox:run": "crabbox run",
|
|
57
|
-
"crabbox:stop": "crabbox stop",
|
|
58
|
-
"crabbox:warmup": "crabbox warmup"
|
|
59
|
-
},
|
|
60
|
-
"dependencies": {
|
|
61
|
-
"ajv": "^8.20.0",
|
|
62
|
-
"yaml": "^2.9.0"
|
|
63
|
-
},
|
|
64
|
-
"devDependencies": {
|
|
65
|
-
"@types/node": "^25.9.2",
|
|
66
|
-
"@typescript/native-preview": "7.0.0-dev.20260609.1",
|
|
67
|
-
"oxfmt": "^0.54.0",
|
|
68
|
-
"oxlint": "^1.69.0",
|
|
69
|
-
"oxlint-tsgolint": "^0.23.0",
|
|
70
|
-
"typescript": "^6.0.3"
|
|
71
|
-
},
|
|
72
|
-
"engines": {
|
|
73
|
-
"node": ">=22"
|
|
74
|
-
}
|
|
75
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@plateforme-ai/lobster",
|
|
3
|
+
"version": "2026.6.13",
|
|
4
|
+
"description": "Workflow runtime for AI agents - deterministic pipelines with approval gates",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ai-agent",
|
|
7
|
+
"approval",
|
|
8
|
+
"automation",
|
|
9
|
+
"lobster",
|
|
10
|
+
"openclaw",
|
|
11
|
+
"pipeline",
|
|
12
|
+
"workflow"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://github.com/plateforme-ai/lobster#readme",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/plateforme-ai/lobster/issues"
|
|
17
|
+
},
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/plateforme-ai/lobster.git"
|
|
22
|
+
},
|
|
23
|
+
"bin": {
|
|
24
|
+
"clawd.invoke": "bin/clawd.invoke.js",
|
|
25
|
+
"lobster": "bin/lobster.js",
|
|
26
|
+
"openclaw.invoke": "bin/openclaw.invoke.js"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"bin",
|
|
30
|
+
"dist",
|
|
31
|
+
"README.md",
|
|
32
|
+
"LICENSE",
|
|
33
|
+
"VISION.md"
|
|
34
|
+
],
|
|
35
|
+
"type": "module",
|
|
36
|
+
"main": "./dist/src/sdk/index.js",
|
|
37
|
+
"exports": {
|
|
38
|
+
".": "./dist/src/sdk/index.js",
|
|
39
|
+
"./sdk": "./dist/src/sdk/index.js",
|
|
40
|
+
"./core": "./dist/src/core/index.js",
|
|
41
|
+
"./recipes/github": "./dist/src/recipes/github/index.js"
|
|
42
|
+
},
|
|
43
|
+
"scripts": {
|
|
44
|
+
"clean": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\"",
|
|
45
|
+
"build": "pnpm clean && tsgo -p tsconfig.json",
|
|
46
|
+
"prepack": "pnpm build",
|
|
47
|
+
"typecheck": "tsgo -p tsconfig.json --noEmit",
|
|
48
|
+
"format": "oxfmt --write package.json tsconfig.json src test",
|
|
49
|
+
"format:check": "oxfmt --check package.json tsconfig.json src test",
|
|
50
|
+
"lint": "pnpm format:check && oxlint --tsconfig tsconfig.json src test",
|
|
51
|
+
"fmt": "pnpm format",
|
|
52
|
+
"test": "pnpm build && node --test dist/test/*.test.js",
|
|
53
|
+
"check:changed": "pnpm run test",
|
|
54
|
+
"test:changed": "pnpm run test",
|
|
55
|
+
"crabbox:hydrate": "crabbox actions hydrate",
|
|
56
|
+
"crabbox:run": "crabbox run",
|
|
57
|
+
"crabbox:stop": "crabbox stop",
|
|
58
|
+
"crabbox:warmup": "crabbox warmup"
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"ajv": "^8.20.0",
|
|
62
|
+
"yaml": "^2.9.0"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@types/node": "^25.9.2",
|
|
66
|
+
"@typescript/native-preview": "7.0.0-dev.20260609.1",
|
|
67
|
+
"oxfmt": "^0.54.0",
|
|
68
|
+
"oxlint": "^1.69.0",
|
|
69
|
+
"oxlint-tsgolint": "^0.23.0",
|
|
70
|
+
"typescript": "^6.0.3"
|
|
71
|
+
},
|
|
72
|
+
"engines": {
|
|
73
|
+
"node": ">=22"
|
|
74
|
+
}
|
|
75
|
+
}
|