loom-agent 1.2.0 → 1.2.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.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Loom Code
2
2
 
3
- [![npm version](https://img.shields.io/npm/v/loom-code?style=flat&color=blue)](https://npmjs.com/loom-code)
3
+ [![npm version](https://img.shields.io/npm/v/loom-code?style=flat&color=blue)](https://www.npmjs.com/package/loom-agent)
4
4
  [![License: MIT](https://img.shields.io/npm/l/loom-code?style=flat&color=green)](LICENSE)
5
5
  [![Platform: Win/Mac/Linux](https://img.shields.io/badge/terminal-Win%20%7C%20Mac%20%7C%20Linux-orange)](#)
6
6
 
@@ -430,4 +430,4 @@ Then add it in `src/providers/index.js` under `PROVIDERS`.
430
430
 
431
431
  ## License
432
432
 
433
- MIT
433
+ MIT
package/bunfig.toml ADDED
@@ -0,0 +1 @@
1
+ preload = ["@opentui/solid/preload"]
package/package.json CHANGED
@@ -1,9 +1,14 @@
1
1
  {
2
2
  "name": "loom-agent",
3
- "version": "1.2.0",
4
- "repository": { "type": "git", "url": "git+https://github.com/toshalkumbhar8979-design/loomcode.git" },
3
+ "version": "1.2.1",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "git+https://github.com/toshalkumbhar8979-design/loomcode.git"
7
+ },
5
8
  "homepage": "https://github.com/toshalkumbhar8979-design/loomcode#readme",
6
- "bugs": { "url": "https://github.com/toshalkumbhar8979-design/loomcode/issues" },
9
+ "bugs": {
10
+ "url": "https://github.com/toshalkumbhar8979-design/loomcode/issues"
11
+ },
7
12
  "description": "Loom Code — AI-powered coding agent for the terminal. Multi-provider support including NVIDIA. OpenTUI interface.",
8
13
  "main": "src/index.js",
9
14
  "bin": {
@@ -59,6 +64,8 @@
59
64
  "typescript": "^5.7.3"
60
65
  },
61
66
  "files": [
67
+ "bunfig.toml",
68
+ "tsconfig.json",
62
69
  "bin/loom.js",
63
70
  "bin/loom-tui.js",
64
71
  "src/**/*.js",
package/tsconfig.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "compilerOptions": {
3
+ "lib": ["ESNext"],
4
+ "target": "ESNext",
5
+ "module": "ESNext",
6
+ "moduleResolution": "bundler",
7
+ "allowImportingTsExtensions": true,
8
+ "jsx": "preserve",
9
+ "jsxImportSource": "@opentui/solid",
10
+ "strict": false,
11
+ "skipLibCheck": true,
12
+ "noEmit": true,
13
+ "types": ["bun-types"],
14
+ "esModuleInterop": true,
15
+ "allowSyntheticDefaultImports": true,
16
+ "resolveJsonModule": true,
17
+ "allowJs": true,
18
+ "baseUrl": ".",
19
+ "paths": {
20
+ "~/*": ["src/*"]
21
+ }
22
+ },
23
+ "include": ["src/**/*", "src/tui/**/*"]
24
+ }