@olorehq/olore 0.4.1 → 0.4.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/dist/cli.js +1112 -15542
- package/package.json +11 -16
- package/dist/cli.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@olorehq/olore",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"description": "Version-pinned docs for AI coding agents. Offline. Local-first.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -25,44 +25,39 @@
|
|
|
25
25
|
"homepage": "https://www.olore.dev",
|
|
26
26
|
"type": "module",
|
|
27
27
|
"files": [
|
|
28
|
-
"dist"
|
|
28
|
+
"dist",
|
|
29
|
+
"package.json"
|
|
29
30
|
],
|
|
30
31
|
"bin": {
|
|
31
32
|
"olore": "dist/cli.js"
|
|
32
33
|
},
|
|
33
34
|
"scripts": {
|
|
34
35
|
"build": "tsup",
|
|
35
|
-
"build:bin": "bun build src/cli.ts --compile --outfile dist/olore",
|
|
36
|
-
"build:bin:all": "npm run build:bin:darwin-arm64 && npm run build:bin:darwin-x64 && npm run build:bin:linux-x64 && npm run build:bin:linux-arm64",
|
|
37
|
-
"build:bin:darwin-arm64": "bun build src/cli.ts --compile --target=bun-darwin-arm64 --outfile dist/olore-darwin-arm64",
|
|
38
|
-
"build:bin:darwin-x64": "bun build src/cli.ts --compile --target=bun-darwin-x64 --outfile dist/olore-darwin-x64",
|
|
39
|
-
"build:bin:linux-arm64": "bun build src/cli.ts --compile --target=bun-linux-arm64 --outfile dist/olore-linux-arm64",
|
|
40
|
-
"build:bin:linux-x64": "bun build src/cli.ts --compile --target=bun-linux-x64 --outfile dist/olore-linux-x64",
|
|
41
36
|
"dev": "tsup --watch",
|
|
42
37
|
"format": "prettier --write src/",
|
|
43
38
|
"format:check": "prettier --check src/",
|
|
44
|
-
"lint": "eslint src/",
|
|
45
39
|
"test": "vitest",
|
|
46
40
|
"typecheck": "tsc --noEmit",
|
|
47
41
|
"generate-registry": "npx tsx scripts/generate-registry.ts"
|
|
48
42
|
},
|
|
49
|
-
"dependencies": {
|
|
50
|
-
"devDependencies": {
|
|
51
|
-
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
|
|
52
|
-
"@types/fs-extra": "^11.0.4",
|
|
53
|
-
"@types/node": "^22.10.7",
|
|
43
|
+
"dependencies": {
|
|
54
44
|
"commander": "^12.1.0",
|
|
55
45
|
"fs-extra": "^11.3.3",
|
|
56
46
|
"ora": "^9.0.0",
|
|
57
47
|
"picocolors": "^1.1.1",
|
|
48
|
+
"tar": "^7.4.3"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
|
|
52
|
+
"@types/fs-extra": "^11.0.4",
|
|
53
|
+
"@types/node": "^22.10.7",
|
|
58
54
|
"prettier": "^3.8.0",
|
|
59
55
|
"prettier-plugin-packagejson": "^2.5.22",
|
|
60
|
-
"tar": "^7.4.3",
|
|
61
56
|
"tsup": "^8.3.5",
|
|
62
57
|
"typescript": "^5.7.3",
|
|
63
58
|
"vitest": "^2.1.8"
|
|
64
59
|
},
|
|
65
60
|
"engines": {
|
|
66
|
-
"node": ">=
|
|
61
|
+
"node": ">=22"
|
|
67
62
|
}
|
|
68
63
|
}
|
package/dist/cli.d.ts
DELETED