-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.68 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
{
"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-alpha.7",
"@effectionx/context-api": "0.6.0",
"@effectionx/converge": "0.1.4",
"@effectionx/fetch": "0.2.0",
"@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",
"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": {
"@effectionx/bdd": "workspace:*",
"oxlint": "^1",
"oxfmt": "^0.41.0",
"tsx": "^4.19.0",
"typescript": "^5.0.0",
"expect": "^30.0.0",
"@types/node": "^22.0.0"
},
"scripts": {
"test:node": "tsx --tsconfig tsconfig.node.json --test durable-streams/tests/*.test.ts core/tests/frontmatter.test.ts core/tests/heal.test.ts core/tests/scanner.test.ts core/tests/eval-transform.test.ts core/tests/eval-interpolate.test.ts core/tests/document-output-api.test.ts core/tests/output-normalize.test.ts core/tests/output-terminal.test.ts",
"test:bun": "bun test durable-streams/tests/ core/tests/frontmatter.test.ts core/tests/heal.test.ts core/tests/scanner.test.ts core/tests/eval-transform.test.ts core/tests/eval-interpolate.test.ts core/tests/document-output-api.test.ts core/tests/output-normalize.test.ts core/tests/output-terminal.test.ts",
"test:deno": "deno task test",
"lint": "oxlint -c .oxlintrc.json core/src/ cli/src/ durable-streams/ runtime/ && oxfmt --check core/src/ cli/src/ durable-streams/ runtime/ test-support/",
"fmt": "oxfmt --write core/src/ cli/src/ durable-streams/ runtime/ test-support/ core/tests/ durable-streams/tests/ packages/code-review-agent/"
},
"workspaces": [
"core",
"cli",
"durable-streams",
"runtime",
"packages/code-review-agent",
"test-support"
]
}