-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.97 KB
/
package.json
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": "@sounisi5011/check-pid-file",
"version": "1.1.2",
"description": "Use the PID file to check which processes have already started and prevent multiple executions",
"keywords": [
"daemon",
"file",
"pid",
"pid-file",
"process",
"processes",
"util",
"utility"
],
"homepage": "https://github.com/sounisi5011/npm-packages/tree/main/packages/check-pid-file#readme",
"bugs": {
"url": "https://github.com/sounisi5011/npm-packages/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sounisi5011/npm-packages.git",
"directory": "packages/check-pid-file"
},
"license": "MIT",
"author": "sounisi5011",
"type": "commonjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/",
"/CHANGELOG.md",
"!**/*.tsbuildinfo"
],
"scripts": {
"build": "tsc -p ./src/",
"build-with-cache": "../../scripts/fixed-turbo-run.sh build",
"lint:tsc": "run-p lint:tsc:*",
"lint:tsc:src": "tsc -p ./src/ --noEmit",
"lint:tsc:test": "tsc -p ./tests/ --noEmit",
"test": "run-if-supported --verbose run-p test:*",
"test:jest": "jest --runInBand"
},
"dependencies": {
"find-process": "^1.4.4",
"signal-exit": "^3.0.3",
"write-file-atomic": "^5.0.0"
},
"devDependencies": {
"@sounisi5011/cli-utils-top-level-await": "workspace:^1.0.0",
"@sounisi5011/run-if-supported": "1.1.1",
"@swc/core": "1.3.25",
"@swc/jest": "0.2.24",
"@types/jest": "29.2.5",
"@types/node": "14.18.36",
"@types/readline-transform": "1.0.1",
"@types/signal-exit": "3.0.1",
"@types/write-file-atomic": "4.0.0",
"execa": "5.1.1",
"jest": "29.3.1",
"readline-transform": "1.0.0",
"turbo": "1.8.2",
"typescript": "4.9.4"
},
"engines": {
"node": "^14.13.1 || 16.x || >=18.x"
}
}