layrith 0.1.0

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 (4) hide show
  1. package/LICENSE +60 -0
  2. package/README.md +339 -0
  3. package/layrith.js +223 -0
  4. package/package.json +42 -0
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "layrith",
3
+ "version": "0.1.0",
4
+ "module": "layrith.js",
5
+ "type": "module",
6
+ "private": false,
7
+ "bin": {
8
+ "layrith": "layrith.js"
9
+ },
10
+ "license": "SEE LICENSE IN LICENSE",
11
+ "files": [
12
+ "layrith.js",
13
+ "README.md",
14
+ "LICENSE"
15
+ ],
16
+ "scripts": {
17
+ "dev": "bun run index.ts",
18
+ "chat": "bun run index.ts chat",
19
+ "embed:prompts": "node ./scripts/embed-system-prompts.mjs",
20
+ "build": "bun run embed:prompts && bun build ./src/index.ts --outfile ./layrith.js --target bun --format esm --minify",
21
+ "prepack": "bun run build",
22
+ "web:dev": "bun --cwd web run dev",
23
+ "web:build": "bun --cwd web run build"
24
+ },
25
+ "devDependencies": {
26
+ "@types/bun": "latest"
27
+ },
28
+ "peerDependencies": {
29
+ "typescript": "^5"
30
+ },
31
+ "dependencies": {
32
+ "@anthropic-ai/claude-agent-sdk": "^0.2.81",
33
+ "@modelcontextprotocol/sdk": "^1.27.1",
34
+ "commander": "^14.0.3",
35
+ "picocolors": "^1.1.1",
36
+ "tree-sitter": "^0.25.0",
37
+ "tree-sitter-javascript": "^0.25.0",
38
+ "tree-sitter-typescript": "^0.23.2",
39
+ "web-tree-sitter": "^0.26.6",
40
+ "zod": "^4.3.6"
41
+ }
42
+ }