llm-mar 1.0.5 → 1.0.7

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,28 @@
1
+ name: Publish Package
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+ workflow_dispatch:
8
+
9
+ permissions:
10
+ id-token: write
11
+ contents: read
12
+
13
+ jobs:
14
+ publish:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v6
18
+
19
+ - uses: actions/setup-node@v6
20
+ with:
21
+ node-version: '24'
22
+ registry-url: 'https://registry.npmjs.org'
23
+ - run: npm install -g npm@latest
24
+ - run: npm ci
25
+ - run: npm run build --if-present
26
+ - run: npm publish --access public
27
+ env:
28
+ NPM_CONFIG_PROVENANCE: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "llm-mar",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "LLM-MAR is a compact CLI that creates LLM agents, lets them debate, answers questions, and builds workflows.",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -14,7 +14,11 @@
14
14
  "license": "MIT",
15
15
  "repository": {
16
16
  "type": "git",
17
- "url": "https://github.com/renatojuniorrs/llm-mar.git"
17
+ "url": "git+https://github.com/renatojuniorrs/llm-mar.git"
18
+ },
19
+ "publishConfig": {
20
+ "access": "public",
21
+ "provenance": true
18
22
  },
19
23
  "dependencies": {
20
24
  "@langchain/openai": "^1.4.3",