-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.68 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.68 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
{
"name": "kill-sync",
"author": "Khiet Tam Nguyen",
"license": "MIT",
"description": "Cross-platform kill command. Supports recusive/tree-kill in a synchronous manner.",
"repository": {
"type": "git",
"url": "https://github.com/nktnet1/kill-sync"
},
"version": "1.0.3",
"files": [
"dist"
],
"scripts": {
"start": "ts-node tests/app/server",
"test": "vitest run",
"tc": "vitest run --coverage",
"lint": "eslint './**/*.ts'",
"lf": "eslint --fix './**/*.ts'",
"tsc": "tsc --noEmit",
"build": "tsdown",
"prepublishOnly": "pnpm build"
},
"keywords": [
"nodejs",
"sync",
"synchronous",
"process",
"processes",
"terminate",
"kill",
"kill-sync",
"tree",
"trees",
"taskkill",
"pid",
"ps",
"recursive",
"tree-kill",
"tree-kill-sync",
"signal",
"comp1531"
],
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/express": "^5.0.3",
"@types/node": "^24.5.2",
"@vitest/coverage-v8": "3.2.4",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"express": "^5.1.0",
"globals": "^16.4.0",
"slync": "^1.0.2",
"sync-request-curl": "^3.3.3",
"ts-node": "^10.9.2",
"tsdown": "^0.15.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.1",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.17.1",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
}
}