@webpod/ps 0.0.0-beta.8 → 0.0.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/package.json +12 -10
- package/target/cjs/index.cjs +5 -5
- package/target/esm/index.mjs +2 -2
package/package.json
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webpod/ps",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.1",
|
|
4
4
|
"description": "A process lookup utility",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
8
|
"type": "module",
|
|
9
9
|
"main": "target/cjs/index.cjs",
|
|
10
|
+
"module": "target/esm/index.mjs",
|
|
11
|
+
"types": "target/dts/index.d.ts",
|
|
10
12
|
"exports": {
|
|
11
13
|
".": {
|
|
12
14
|
"types": "./target/dts/index.d.ts",
|
|
@@ -40,24 +42,24 @@
|
|
|
40
42
|
],
|
|
41
43
|
"dependencies": {
|
|
42
44
|
"@webpod/ingrid": "^0.0.0-beta.3",
|
|
43
|
-
"zurk": "^0.
|
|
45
|
+
"zurk": "^0.10.0"
|
|
44
46
|
},
|
|
45
47
|
"devDependencies": {
|
|
46
|
-
"@types/node": "^22.
|
|
47
|
-
"c8": "^10.1.
|
|
48
|
-
"concurrently": "^9.0
|
|
49
|
-
"esbuild": "^0.
|
|
50
|
-
"esbuild-node-externals": "^1.
|
|
48
|
+
"@types/node": "^22.10.2",
|
|
49
|
+
"c8": "^10.1.3",
|
|
50
|
+
"concurrently": "^9.1.0",
|
|
51
|
+
"esbuild": "^0.24.2",
|
|
52
|
+
"esbuild-node-externals": "^1.16.0",
|
|
51
53
|
"esbuild-plugin-entry-chunks": "^0.1.15",
|
|
52
54
|
"eslint": "^8.57.0",
|
|
53
55
|
"eslint-config-qiwi": "^2.1.3",
|
|
54
56
|
"fast-glob": "^3.3.2",
|
|
55
57
|
"minimist": "^1.2.8",
|
|
56
|
-
"mocha": "^10.
|
|
58
|
+
"mocha": "^10.8.2",
|
|
57
59
|
"sinon": "^18.0.1",
|
|
58
60
|
"ts-node": "^10.9.2",
|
|
59
|
-
"typedoc": "^0.
|
|
60
|
-
"typescript": "^5.
|
|
61
|
+
"typedoc": "^0.27.5",
|
|
62
|
+
"typescript": "^5.7.2"
|
|
61
63
|
},
|
|
62
64
|
"repository": {
|
|
63
65
|
"type": "git",
|
package/target/cjs/index.cjs
CHANGED
|
@@ -48,16 +48,16 @@ var __async = (__this, __arguments, generator) => {
|
|
|
48
48
|
};
|
|
49
49
|
|
|
50
50
|
// src/main/ts/index.ts
|
|
51
|
-
var
|
|
52
|
-
__export(
|
|
53
|
-
default: () =>
|
|
51
|
+
var index_exports = {};
|
|
52
|
+
__export(index_exports, {
|
|
53
|
+
default: () => index_default,
|
|
54
54
|
kill: () => kill,
|
|
55
55
|
lookup: () => lookup,
|
|
56
56
|
lookupSync: () => lookupSync,
|
|
57
57
|
tree: () => tree,
|
|
58
58
|
treeSync: () => treeSync
|
|
59
59
|
});
|
|
60
|
-
module.exports = __toCommonJS(
|
|
60
|
+
module.exports = __toCommonJS(index_exports);
|
|
61
61
|
|
|
62
62
|
// src/main/ts/ps.ts
|
|
63
63
|
var import_node_process = __toESM(require("node:process"), 1);
|
|
@@ -271,7 +271,7 @@ var noop = () => {
|
|
|
271
271
|
var identity = (v) => v;
|
|
272
272
|
|
|
273
273
|
// src/main/ts/index.ts
|
|
274
|
-
var
|
|
274
|
+
var index_default = { kill, lookup, lookupSync, tree, treeSync };
|
|
275
275
|
// Annotate the CommonJS export names for ESM import in node:
|
|
276
276
|
0 && (module.exports = {
|
|
277
277
|
kill,
|
package/target/esm/index.mjs
CHANGED
|
@@ -207,9 +207,9 @@ var noop = () => {
|
|
|
207
207
|
var identity = (v) => v;
|
|
208
208
|
|
|
209
209
|
// src/main/ts/index.ts
|
|
210
|
-
var
|
|
210
|
+
var index_default = { kill, lookup, lookupSync, tree, treeSync };
|
|
211
211
|
export {
|
|
212
|
-
|
|
212
|
+
index_default as default,
|
|
213
213
|
kill,
|
|
214
214
|
lookup,
|
|
215
215
|
lookupSync,
|