@crewhaus/spec-patch 0.1.1 → 0.1.3
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/package.json +7 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crewhaus/spec-patch",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Pillar-2 patch infrastructure — apply a SpecPatch to a YAML source preserving comments and key order via the yaml CST. Drives the active eval optimizer's spec-level mutation loop.",
|
|
6
6
|
"main": "src/index.ts",
|
|
@@ -12,16 +12,16 @@
|
|
|
12
12
|
"test": "bun test src"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@crewhaus/errors": "0.1.
|
|
16
|
-
"@crewhaus/spec": "0.1.
|
|
15
|
+
"@crewhaus/errors": "0.1.3",
|
|
16
|
+
"@crewhaus/spec": "0.1.3",
|
|
17
17
|
"yaml": "^2.6.0",
|
|
18
18
|
"zod": "^3.23.8"
|
|
19
19
|
},
|
|
20
20
|
"license": "Apache-2.0",
|
|
21
21
|
"author": {
|
|
22
22
|
"name": "Max Meier",
|
|
23
|
-
"email": "max@
|
|
24
|
-
"url": "https://
|
|
23
|
+
"email": "max@crewhaus.ai",
|
|
24
|
+
"url": "https://crewhaus.ai"
|
|
25
25
|
},
|
|
26
26
|
"repository": {
|
|
27
27
|
"type": "git",
|
|
@@ -33,12 +33,7 @@
|
|
|
33
33
|
"url": "https://github.com/crewhaus/factory/issues"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
|
-
"access": "
|
|
36
|
+
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"files": [
|
|
39
|
-
"src",
|
|
40
|
-
"README.md",
|
|
41
|
-
"LICENSE",
|
|
42
|
-
"NOTICE"
|
|
43
|
-
]
|
|
38
|
+
"files": ["src", "README.md", "LICENSE", "NOTICE"]
|
|
44
39
|
}
|