ppagent 0.0.32 → 0.0.34
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/dist/lib.js +15 -15
- package/package.json +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ppagent",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.34",
|
|
4
4
|
"description": "an agent manager",
|
|
5
5
|
"types": "dist/lib.d.ts",
|
|
6
6
|
"main": "dist/lib.js",
|
|
@@ -109,7 +109,10 @@
|
|
|
109
109
|
"prettier": "^3.3.3",
|
|
110
110
|
"tsup": "^8.3.5",
|
|
111
111
|
"tsx": "^4.19.0",
|
|
112
|
-
"
|
|
112
|
+
"typedoc": "^0.28.0",
|
|
113
|
+
"typedoc-plugin-markdown": "^4.6.2",
|
|
114
|
+
"typedoc-vitepress-theme": "^1.1.2",
|
|
115
|
+
"typescript": "^5.8.3",
|
|
113
116
|
"typescript-eslint": "^8.3.0",
|
|
114
117
|
"vitepress": "^1.6.3",
|
|
115
118
|
"vitest": "^2.0.5"
|
|
@@ -121,10 +124,12 @@
|
|
|
121
124
|
"start": "node build",
|
|
122
125
|
"tsx": "cross-env NODE_ENV=development tsx src/index.ts",
|
|
123
126
|
"dev": "cross-env NODE_ENV=development tsx watch src/index.ts",
|
|
127
|
+
"prod": "cross-env NODE_ENV=production tsx watch src/index.ts",
|
|
124
128
|
"deno": "deno --unstable-sloppy-imports --allow-env --allow-sys --allow-read --allow-write --allow-net --inspect src/index.ts | pino-pretty --colorize",
|
|
125
129
|
"lib": "node build.lib.js",
|
|
126
130
|
"test": "vitest",
|
|
127
131
|
"test:watch": "vitest -w",
|
|
132
|
+
"predocs:build": "typedoc",
|
|
128
133
|
"docs:dev": "vitepress dev docs",
|
|
129
134
|
"docs:build": "vitepress build docs",
|
|
130
135
|
"docs:preview": "vitepress preview docs"
|