@tangle-network/agent-app 0.1.0 → 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.
Files changed (1) hide show
  1. package/package.json +12 -10
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@tangle-network/agent-app",
3
- "version": "0.1.0",
4
- "description": "Shared application-shell framework for Tangle agent products: the structured agent→app tool side channel (proposals, follow-ups, generated UI, citations), domain-seamed so each product supplies its own persistence and types.",
3
+ "version": "0.1.1",
4
+ "packageManager": "pnpm@10.33.4",
5
+ "description": "Shared application-shell framework for Tangle agent products: the structured agent\u2192app tool side channel (proposals, follow-ups, generated UI, citations), domain-seamed so each product supplies its own persistence and types.",
5
6
  "homepage": "https://github.com/tangle-network/agent-app#readme",
6
7
  "repository": {
7
8
  "type": "git",
@@ -79,6 +80,14 @@
79
80
  "default": "./dist/redact/index.js"
80
81
  }
81
82
  },
83
+ "scripts": {
84
+ "build": "tsup",
85
+ "dev": "tsup --watch",
86
+ "prepare": "tsup",
87
+ "test": "vitest run",
88
+ "test:watch": "vitest",
89
+ "typecheck": "tsc --noEmit"
90
+ },
82
91
  "devDependencies": {
83
92
  "@types/node": "^25.6.0",
84
93
  "tsup": "^8.0.0",
@@ -90,12 +99,5 @@
90
99
  "peerDependencies": {
91
100
  "@tangle-network/agent-integrations": ">=0.32.0",
92
101
  "@tangle-network/agent-eval": ">=0.50.0"
93
- },
94
- "scripts": {
95
- "build": "tsup",
96
- "dev": "tsup --watch",
97
- "test": "vitest run",
98
- "test:watch": "vitest",
99
- "typecheck": "tsc --noEmit"
100
102
  }
101
- }
103
+ }