@opum-ai/lore 0.3.2 → 0.3.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 +36 -36
package/package.json
CHANGED
|
@@ -1,21 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opum-ai/lore",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "Thin, OKF-native documentation CLI that couples repo-resident docs to Backlog.md and serves them to agents and humans.",
|
|
5
|
-
"publishConfig": {
|
|
6
|
-
"access": "public"
|
|
7
|
-
},
|
|
8
|
-
"type": "module",
|
|
9
|
-
"bin": {
|
|
10
|
-
"lore": "bin/lore.cjs"
|
|
11
|
-
},
|
|
12
|
-
"license": "MIT",
|
|
3
|
+
"version": "0.3.3",
|
|
13
4
|
"author": "Jeremy Newhouse",
|
|
14
5
|
"repository": {
|
|
15
6
|
"type": "git",
|
|
16
7
|
"url": "git+https://github.com/opum-ai/lore-cli.git"
|
|
17
8
|
},
|
|
18
|
-
"
|
|
9
|
+
"devDependencies": {
|
|
10
|
+
"@ladybugdb/core": "0.19.0",
|
|
11
|
+
"@biomejs/biome": "2.4.12",
|
|
12
|
+
"@playwright/test": "1.62.1",
|
|
13
|
+
"@types/bun": "^1.3.14",
|
|
14
|
+
"@types/mdast": "4.0.4",
|
|
15
|
+
"commander": "15.0.0",
|
|
16
|
+
"github-slugger": "2.0.0",
|
|
17
|
+
"ipaddr.js": "2.4.0",
|
|
18
|
+
"js-yaml": "5.2.2",
|
|
19
|
+
"mdast-util-from-markdown": "2.0.3",
|
|
20
|
+
"string-width": "8.2.2",
|
|
21
|
+
"typescript": "^5",
|
|
22
|
+
"zod": "4.4.3"
|
|
23
|
+
},
|
|
24
|
+
"optionalDependencies": {
|
|
25
|
+
"@opum-ai/lore-darwin-arm64": "0.3.3",
|
|
26
|
+
"@opum-ai/lore-darwin-x64": "0.3.3",
|
|
27
|
+
"@opum-ai/lore-linux-arm64": "0.3.3",
|
|
28
|
+
"@opum-ai/lore-linux-x64": "0.3.3",
|
|
29
|
+
"@opum-ai/lore-win32-arm64": "0.3.3",
|
|
30
|
+
"@opum-ai/lore-win32-x64": "0.3.3"
|
|
31
|
+
},
|
|
32
|
+
"bin": {
|
|
33
|
+
"lore": "bin/lore.cjs"
|
|
34
|
+
},
|
|
35
|
+
"description": "Thin, OKF-native documentation CLI that couples repo-resident docs to Backlog.md and serves them to agents and humans.",
|
|
19
36
|
"engines": {
|
|
20
37
|
"bun": ">=1.3.14"
|
|
21
38
|
},
|
|
@@ -24,13 +41,13 @@
|
|
|
24
41
|
"README.md",
|
|
25
42
|
"LICENSE"
|
|
26
43
|
],
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"@
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"
|
|
44
|
+
"license": "MIT",
|
|
45
|
+
"packageManager": "bun@1.3.14",
|
|
46
|
+
"patchedDependencies": {
|
|
47
|
+
"@ladybugdb/core@0.19.0": "patches/@ladybugdb%2Fcore@0.19.0.patch"
|
|
48
|
+
},
|
|
49
|
+
"publishConfig": {
|
|
50
|
+
"access": "public"
|
|
34
51
|
},
|
|
35
52
|
"scripts": {
|
|
36
53
|
"lore": "bun run src/cli.ts",
|
|
@@ -43,25 +60,8 @@
|
|
|
43
60
|
"test:browser": "playwright test",
|
|
44
61
|
"test:coverage": "bun test --coverage"
|
|
45
62
|
},
|
|
46
|
-
"devDependencies": {
|
|
47
|
-
"@ladybugdb/core": "0.19.0",
|
|
48
|
-
"@biomejs/biome": "2.4.12",
|
|
49
|
-
"@playwright/test": "1.62.1",
|
|
50
|
-
"@types/bun": "^1.3.14",
|
|
51
|
-
"@types/mdast": "4.0.4",
|
|
52
|
-
"commander": "15.0.0",
|
|
53
|
-
"github-slugger": "2.0.0",
|
|
54
|
-
"ipaddr.js": "2.4.0",
|
|
55
|
-
"js-yaml": "5.2.2",
|
|
56
|
-
"mdast-util-from-markdown": "2.0.3",
|
|
57
|
-
"string-width": "8.2.2",
|
|
58
|
-
"typescript": "^5",
|
|
59
|
-
"zod": "4.4.3"
|
|
60
|
-
},
|
|
61
63
|
"trustedDependencies": [
|
|
62
64
|
"@ladybugdb/core"
|
|
63
65
|
],
|
|
64
|
-
"
|
|
65
|
-
"@ladybugdb/core@0.19.0": "patches/@ladybugdb%2Fcore@0.19.0.patch"
|
|
66
|
-
}
|
|
66
|
+
"type": "module"
|
|
67
67
|
}
|