-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.54 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
{
"private": true,
"type": "module",
"description": "executable.md — treat markdown documents as executable workflows.",
"homepage": "https://executable.md",
"repository": {
"type": "git",
"url": "git+https://github.com/taras/executable.md.git"
},
"bugs": {
"url": "https://github.com/taras/executable.md/issues"
},
"keywords": [
"markdown",
"executable-markdown",
"workflow-automation",
"effection",
"cli",
"llm",
"agents"
],
"author": "Taras Mankovski",
"license": "MIT",
"packageManager": "pnpm@9.15.0",
"dependencies": {
"@durable-streams/client": "^0.2.2",
"effection": "4.1.0",
"@effectionx/context-api": "0.6.0",
"@effectionx/converge": "0.1.4",
"@effectionx/fetch": "0.2.1",
"@effectionx/fs": "0.3.0",
"@effectionx/middleware": "0.1.1",
"@effectionx/node": "0.2.4",
"@effectionx/process": "0.8.1",
"@effectionx/scope-eval": "0.1.3",
"@effectionx/stream-helpers": "0.8.3",
"@effectionx/test-adapter": "0.7.4",
"@effectionx/timebox": "0.4.3",
"acorn": "^8.16.0",
"ajv": "^8.17.1",
"gray-matter": "^4.0.3",
"magic-string": "^0.30.21",
"marked": "^17.0.4",
"marked-terminal": "^7.3.0",
"remark": "15",
"remend": "^1.2.2",
"zod": "^4.3.6",
"unist-util-select": "^5",
"mdast-util-to-string": "^4"
},
"devDependencies": {
"@durable-streams/server": "^0.3.8",
"@executablemd/acp": "workspace:*",
"@executablemd/cli": "workspace:*",
"@executablemd/code-review-agent": "workspace:*",
"@executablemd/core": "workspace:*",
"@executablemd/durable-streams": "workspace:*",
"@executablemd/runtime": "workspace:*",
"@executablemd/test-agent": "workspace:*",
"@executablemd/test-support": "workspace:*",
"@executablemd/testing": "workspace:*",
"@executablemd/workflow": "workspace:*",
"@types/node": "^22.0.0",
"expect": "^30.0.0",
"oxfmt": "^0.41.0",
"oxlint": "1.74.0",
"tsx": "^4.19.0",
"typescript": "^5.0.0"
},
"scripts": {
"test:node": "tsx scripts/runtime-tests.ts node",
"test:bun": "bun scripts/runtime-tests.ts bun",
"test:deno": "deno task test",
"lint": "oxlint -c .oxlintrc.json --ignore-pattern 'scripts/tests/fixtures/**' --ignore-pattern '**/npm/**' --ignore-pattern 'packages/workflow/vendor/cloudflare-computer-dofs/**' packages scripts .reviews/components && oxfmt --check packages scripts .reviews/components/*.ts",
"fmt": "oxfmt --write packages scripts .reviews/components/*.ts"
},
"workspaces": [
"packages/*"
]
}