-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.37 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
{
"name": "tinyps",
"version": "0.0.0-dev",
"description": "A library of utilities for dealing with system processes.",
"main": "./lib/main.js",
"type": "module",
"exports": {
".": {
"types": "./lib/main.d.ts",
"default": "./lib/main.js"
}
},
"files": [
"lib",
"!lib/**/*.test.js",
"!lib/**/*.test.d.ts"
],
"scripts": {
"build:clean": "node -e \"require('fs').rmSync('./lib', { recursive: true, force: true })\"",
"build": "npm run build:clean && tsgo",
"lint:js": "oxlint src",
"lint:format": "oxfmt --check src",
"lint": "npm run lint:js && npm run lint:format",
"format": "oxfmt --write src",
"test": "vitest run"
},
"keywords": [
"proc",
"process",
"tree-kill",
"ps-tree",
"tiny",
"kill",
"tree"
],
"author": "James Garbutt (https://github.com/43081j)",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/tinylibs/tinyps#readme",
"bugs": {
"url": "https://github.com/tinylibs/tinyps/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinylibs/tinyps.git"
},
"devDependencies": {
"@types/node": "^26.5.1",
"@typescript/native-preview": "^7.0.0-dev.20260509.2",
"@vitest/coverage-v8": "^5.0.0",
"oxfmt": "^0.67.0",
"oxlint": "^1.63.0",
"vitest": "^5.0.0"
}
}