-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.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.2",
"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.12.7",
"@vitest/coverage-v8": "^1.5.2",
"changelogen": "^0.5.5",
"eslint": "^8.57.0",
"eslint-config-unjs": "^0.2.1",
"jiti": "^1.21.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"vitest": "^1.5.2"
},
"packageManager": "[email protected]"
}