-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.04 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.04 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
{
"name": "dispatchkit",
"version": "0.0.0-dev",
"description": "Deterministic dispatch CLI for flow-first job orchestration",
"scripts": {
"prebuild": "node scripts/write-skill-version.mjs",
"build": "tsup src/index.ts src/cli.ts --format esm --out-dir dist --clean --dts && node scripts/check-public-surface.mjs",
"dev": "tsx src/cli.ts",
"check": "tsc --noEmit",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"release:plan": "tsx scripts/release-plan.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"dispatch",
"cli",
"orchestration",
"flow"
],
"author": "",
"license": "ISC",
"homepage": "https://github.com/MehmetSecgin/dispatch#readme",
"bugs": {
"url": "https://github.com/MehmetSecgin/dispatch/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MehmetSecgin/dispatch"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./cli": {
"types": "./dist/cli.d.ts",
"import": "./dist/cli.js"
}
},
"bin": {
"dispatch": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"MODULE_AUTHORING.md",
"CONVENTIONS.md",
"schemas"
],
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"debug": "^4.4.3",
"esbuild": "^0.27.4",
"figures": "^6.1.0",
"jsonpath-plus": "^10.4.0",
"listr2": "^9.0.5",
"log-symbols": "^7.0.1",
"semver": "^7.7.4",
"undici": "^7.22.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^25.3.2",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.3",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}