peam 0.1.1

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.
@@ -0,0 +1,4 @@
1
+ import './chunk-BJTO5JO5.mjs';
2
+ export { createRobotsParser, loadRobotsTxt, parseHTML, shouldIncludePath } from '@peam-ai/parser';
3
+ //# sourceMappingURL=parser.mjs.map
4
+ //# sourceMappingURL=parser.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"parser.mjs","sourcesContent":[]}
@@ -0,0 +1 @@
1
+ export { SearchEngine, buildSearchIndex } from '@peam-ai/search';
@@ -0,0 +1 @@
1
+ export { SearchEngine, buildSearchIndex } from '@peam-ai/search';
package/dist/search.js ADDED
@@ -0,0 +1,16 @@
1
+ 'use strict';
2
+
3
+ var search = require('@peam-ai/search');
4
+
5
+
6
+
7
+ Object.defineProperty(exports, "SearchEngine", {
8
+ enumerable: true,
9
+ get: function () { return search.SearchEngine; }
10
+ });
11
+ Object.defineProperty(exports, "buildSearchIndex", {
12
+ enumerable: true,
13
+ get: function () { return search.buildSearchIndex; }
14
+ });
15
+ //# sourceMappingURL=search.js.map
16
+ //# sourceMappingURL=search.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"search.js","sourcesContent":[]}
@@ -0,0 +1,4 @@
1
+ import './chunk-BJTO5JO5.mjs';
2
+ export { SearchEngine, buildSearchIndex } from '@peam-ai/search';
3
+ //# sourceMappingURL=search.mjs.map
4
+ //# sourceMappingURL=search.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"search.mjs","sourcesContent":[]}
@@ -0,0 +1 @@
1
+ export * from '@peam-ai/server';
@@ -0,0 +1 @@
1
+ export * from '@peam-ai/server';
package/dist/server.js ADDED
@@ -0,0 +1,14 @@
1
+ 'use strict';
2
+
3
+ var server = require('@peam-ai/server');
4
+
5
+
6
+
7
+ Object.keys(server).forEach(function (k) {
8
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
9
+ enumerable: true,
10
+ get: function () { return server[k]; }
11
+ });
12
+ });
13
+ //# sourceMappingURL=server.js.map
14
+ //# sourceMappingURL=server.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"server.js","sourcesContent":[]}
@@ -0,0 +1,3 @@
1
+ export * from '@peam-ai/server';
2
+ //# sourceMappingURL=server.mjs.map
3
+ //# sourceMappingURL=server.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"server.mjs","sourcesContent":[]}
package/package.json ADDED
@@ -0,0 +1,89 @@
1
+ {
2
+ "name": "peam",
3
+ "version": "0.1.1",
4
+ "description": "Peam - AI that knows your website.",
5
+ "main": "./dist/index.js",
6
+ "types": "./dist/index.d.ts",
7
+ "bin": {
8
+ "peam": "./dist/cli.js"
9
+ },
10
+ "keywords": [
11
+ "ai",
12
+ "llm",
13
+ "agent",
14
+ "chat",
15
+ "ui"
16
+ ],
17
+ "author": "Afshin Mehrabani",
18
+ "license": "Apache-2.0",
19
+ "homepage": "https://peam.ai",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "https://github.com/peam-ai/peam.git",
23
+ "directory": "packages/peam"
24
+ },
25
+ "bugs": {
26
+ "url": "https://github.com/peam-ai/peam/issues"
27
+ },
28
+ "files": [
29
+ "dist/**/*",
30
+ "README.md"
31
+ ],
32
+ "exports": {
33
+ ".": {
34
+ "types": "./dist/index.d.ts",
35
+ "require": "./dist/index.js"
36
+ },
37
+ "./client": {
38
+ "types": "./dist/client.d.ts",
39
+ "import": "./dist/client.mjs",
40
+ "require": "./dist/client.js"
41
+ },
42
+ "./logger": {
43
+ "types": "./dist/logger.d.ts",
44
+ "import": "./dist/logger.mjs",
45
+ "require": "./dist/logger.js"
46
+ },
47
+ "./parser": {
48
+ "types": "./dist/parser.d.ts",
49
+ "import": "./dist/parser.mjs",
50
+ "require": "./dist/parser.js"
51
+ },
52
+ "./search": {
53
+ "types": "./dist/search.d.ts",
54
+ "import": "./dist/search.mjs",
55
+ "require": "./dist/search.js"
56
+ },
57
+ "./server": {
58
+ "types": "./dist/server.d.ts",
59
+ "import": "./dist/server.mjs",
60
+ "require": "./dist/server.js"
61
+ }
62
+ },
63
+ "dependencies": {
64
+ "chalk": "^4.1.2",
65
+ "commander": "^12.1.0",
66
+ "fast-glob": "^3.3.3",
67
+ "@peam-ai/logger": "0.1.1",
68
+ "@peam-ai/parser": "0.1.1",
69
+ "@peam-ai/search": "0.1.1",
70
+ "@peam-ai/server": "0.1.1",
71
+ "@peam-ai/client": "0.1.1"
72
+ },
73
+ "devDependencies": {
74
+ "@types/node": "^20.0.0",
75
+ "tsup": "^8.2.4",
76
+ "typescript": "^5.5.4"
77
+ },
78
+ "engines": {
79
+ "node": ">=16.0.0"
80
+ },
81
+ "scripts": {
82
+ "build": "tsup",
83
+ "clean": "rm -rf dist",
84
+ "dev": "tsup --watch",
85
+ "test:eslint": "eslint \"src/**/*.ts*\"",
86
+ "test:prettier": "prettier --check \"src/**/*.ts*\"",
87
+ "test:jest": "jest"
88
+ }
89
+ }