-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.23 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@webpod/ps",
"version": "1.2.1",
"description": "A process lookup utility",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "target/cjs/index.cjs",
"module": "target/esm/index.mjs",
"types": "target/dts/index.d.ts",
"exports": {
".": {
"types": "./target/dts/index.d.ts",
"require": "./target/cjs/index.cjs",
"import": "./target/esm/index.mjs",
"default": "./target/esm/index.mjs"
}
},
"scripts": {
"build": "concurrently 'npm:build:*'",
"build:js": "node ./src/scripts/build.mjs",
"build:dts": "tsc --emitDeclarationOnly --outDir target/dts",
"build:docs": "typedoc --options src/main/typedoc",
"build:stamp": "npx buildstamp",
"test": "concurrently 'npm:test:lint' 'npm:test:unit' 'npm:test:size' && npm run test:legacy",
"test:lint": "oxlint -c oxlintrc.json src/main/ts src/test/ts",
"test:unit": "c8 -r lcov -r text -o target/coverage -x src/scripts -x src/test -x target node --loader ts-node/esm --experimental-specifier-resolution=node src/scripts/test.mjs",
"test:legacy": "mocha -t 0 -R spec src/test/legacy/test.cjs",
"test:size": "size-limit",
"publish:draft": "npm run build && npm publish --no-git-tag-version"
},
"size-limit": [
{
"path": "target/esm/index.mjs",
"limit": "4 kB"
},
{
"path": "target/cjs/index.cjs",
"limit": "5 kB"
}
],
"files": [
"target/cjs",
"target/esm",
"target/dts"
],
"keywords": [
"ps",
"process",
"lookup",
"pid"
],
"dependencies": {
"@webpod/ingrid": "^1.1.1",
"zurk": "^0.11.10"
},
"devDependencies": {
"@size-limit/file": "^12.0.1",
"@types/node": "^25.5.2",
"c8": "^11.0.0",
"concurrently": "^9.2.1",
"esbuild": "^0.28.0",
"esbuild-node-externals": "^1.21.0",
"esbuild-plugin-entry-chunks": "^0.1.18",
"fast-glob": "^3.3.3",
"minimist": "^1.2.8",
"mocha": "^12.0.0-beta-9.2",
"oxlint": "^1.59.0",
"size-limit": "^12.0.1",
"ts-node": "^10.9.2",
"typedoc": "^0.28.18",
"typescript": "^6.0.2"
},
"repository": {
"type": "git",
"url": "git://github.com/webpod/ps.git"
},
"license": "MIT",
"overrides": {
"chokidar": "^4.0.3"
}
}