@mstar-harness/engine 0.0.0
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/README.md +27 -0
- package/dist/audit.d.ts +99 -0
- package/dist/compound.d.ts +90 -0
- package/dist/core.d.ts +112 -0
- package/dist/design-md.d.ts +113 -0
- package/dist/dispatch.d.ts +205 -0
- package/dist/engine.js +3439 -0
- package/dist/host.d.ts +95 -0
- package/dist/index.d.ts +52 -0
- package/dist/iteration.d.ts +88 -0
- package/dist/lease.d.ts +193 -0
- package/dist/lint.d.ts +206 -0
- package/dist/path.d.ts +117 -0
- package/dist/roles.d.ts +87 -0
- package/dist/sdd.d.ts +123 -0
- package/dist/skill-authoring.d.ts +60 -0
- package/dist/status.d.ts +168 -0
- package/dist/worktree.d.ts +104 -0
- package/package.json +41 -0
package/package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mstar-harness/engine",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Morning Star Harness Workflow Engine — deterministic workflow enforcement library (path, status, lease, dispatch, sdd, iteration, lint gates).",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/btspoony/mstar-harness.git",
|
|
9
|
+
"directory": "packages/engine"
|
|
10
|
+
},
|
|
11
|
+
"type": "module",
|
|
12
|
+
"main": "./dist/engine.js",
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"default": "./dist/engine.js"
|
|
18
|
+
},
|
|
19
|
+
"./package.json": "./package.json"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist"
|
|
23
|
+
],
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "rm -rf dist && bun build src/index.ts --target node --outfile dist/engine.js && bunx tsc",
|
|
26
|
+
"test": "bun test",
|
|
27
|
+
"prepublishOnly": "bun run build"
|
|
28
|
+
},
|
|
29
|
+
"engines": {
|
|
30
|
+
"bun": ">=1.2.17"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@types/node": "^25.6.0",
|
|
35
|
+
"bun-types": "^1.2.17",
|
|
36
|
+
"typescript": "^5.9.3"
|
|
37
|
+
},
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"access": "public"
|
|
40
|
+
}
|
|
41
|
+
}
|