forked from unjs/get-port-please
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "get-port-please",
"version": "3.1.1",
"description": "Get an available TCP port to listen",
"repository": "unjs/get-port-please",
"license": "MIT",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "vitest",
"lint": "eslint --ext ts . && prettier -c src test",
"lint:fix": "eslint --fix --ext ts . && prettier -w src test",
"prepack": "unbuild",
"release": "pnpm test && pnpm build && changelogen --release --push && pnpm publish",
"test": "pnpm lint && vitest run"
},
"devDependencies": {
"@types/node": "^20.6.3",
"@vitest/coverage-v8": "^0.34.5",
"changelogen": "^0.5.5",
"eslint": "^8.49.0",
"eslint-config-unjs": "^0.2.1",
"jiti": "^1.20.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vitest": "^0.34.5"
},
"packageManager": "[email protected]"
}