noumen 0.3.0 → 0.4.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.
- package/package.json +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "noumen",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Programmatic AI agent runtime with pluggable providers and sandboxed virtual infrastructure",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -170,6 +170,9 @@
|
|
|
170
170
|
"test": "vitest run",
|
|
171
171
|
"dev": "concurrently -n lib,web -c blue,magenta \"tsup --watch\" \"pnpm --filter noumen-docs dev\"",
|
|
172
172
|
"cli": "tsx src/cli/index.ts",
|
|
173
|
+
"version:major": "npm version major --no-git-tag-version",
|
|
174
|
+
"version:minor": "npm version minor --no-git-tag-version",
|
|
175
|
+
"version:patch": "npm version patch --no-git-tag-version",
|
|
173
176
|
"publish:lib": "pnpm publish --access public --no-git-checks"
|
|
174
177
|
}
|
|
175
178
|
}
|