peam 0.1.2 → 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.
Files changed (2) hide show
  1. package/package.json +6 -6
  2. package/dist/cli.d.ts +0 -21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "peam",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Peam - AI that knows your website.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -64,11 +64,11 @@
64
64
  "chalk": "^4.1.2",
65
65
  "commander": "^12.1.0",
66
66
  "fast-glob": "^3.3.3",
67
- "@peam-ai/client": "0.1.2",
68
- "@peam-ai/logger": "0.1.2",
69
- "@peam-ai/parser": "0.1.2",
70
- "@peam-ai/search": "0.1.2",
71
- "@peam-ai/server": "0.1.2"
67
+ "@peam-ai/logger": "0.1.3",
68
+ "@peam-ai/search": "0.1.3",
69
+ "@peam-ai/parser": "0.1.3",
70
+ "@peam-ai/client": "0.1.3",
71
+ "@peam-ai/server": "0.1.3"
72
72
  },
73
73
  "devDependencies": {
74
74
  "@types/node": "^20.0.0",
package/dist/cli.d.ts DELETED
@@ -1,21 +0,0 @@
1
- import { SearchExporterConfig } from '@peam-ai/search';
2
-
3
- /**
4
- * Peam Static Site Indexer
5
- *
6
- * Scans a static site output directory, discovers HTML files,
7
- * parses them into structured pages, and creates a searchable index.
8
- */
9
-
10
- interface IndexerConfig {
11
- source: string;
12
- searchExporter: SearchExporterConfig;
13
- respectRobotsTxt: boolean;
14
- robotsTxtPath?: string;
15
- exclude: string[];
16
- glob: string;
17
- projectDir: string;
18
- }
19
- declare function indexPages(config: IndexerConfig): Promise<void>;
20
-
21
- export { type IndexerConfig, indexPages };