-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.62 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
{
"name": "runmark",
"private": true,
"version": "0.5.0",
"description": "Repo-native HTTP workflows for developers, scripts, and coding agents.",
"license": "MIT",
"author": "Exit Zero Labs LLC",
"packageManager": "pnpm@10.27.0",
"engines": {
"node": ">=20.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/exit-zero-labs/runmark.git"
},
"bugs": {
"url": "https://github.com/exit-zero-labs/runmark/issues"
},
"homepage": "https://github.com/exit-zero-labs/runmark",
"keywords": [
"runmark",
"http",
"cli",
"mcp",
"yaml",
"api",
"testing",
"automation",
"workflow",
"ai"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"typecheck": "turbo typecheck",
"lint": "pnpm exec biome lint .",
"format": "pnpm exec biome format --write .",
"format:check": "pnpm exec biome check .",
"changeset": "changeset",
"version-packages": "changeset version",
"publish:packages": "node ./scripts/publish-packages.mjs",
"release": "pnpm version-packages && pnpm check && pnpm test && pnpm publish:packages",
"test": "pnpm build && node --test testing/runmark/runmark.e2e.test.mjs testing/runmark/runmark.examples.test.mjs testing/runmark/runmark.unit.test.mjs testing/runmark/runmark.publish.test.mjs",
"check": "pnpm lint && pnpm typecheck && pnpm build"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@changesets/cli": "^2.30.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/node": "^24.12.2",
"esbuild": "^0.25.12",
"turbo": "^2.9.6",
"typescript": "^5.9.3"
}
}