-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
76 lines (76 loc) · 1.92 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
75
76
{
"name": "listhen",
"version": "1.9.0",
"description": "👂 Elegant HTTP Listener",
"repository": "unjs/listhen",
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./cli": {
"types": "./dist/cli.d.ts",
"import": "./dist/cli.mjs",
"require": "./dist/cli.cjs"
}
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"listen": "./bin/listhen.mjs",
"listhen": "./bin/listhen.mjs"
},
"files": [
"dist",
"lib",
"bin",
"cli.d.ts"
],
"scripts": {
"build": "unbuild",
"dev": "vitest",
"lint": "eslint . && prettier -c src test",
"lint:fix": "eslint --fix . && prettier -w src test",
"listhen": "node ./scripts/listhen.mjs",
"play": "node ./scripts/listhen.mjs -w ./playground --ws",
"release": "pnpm test && pnpm build && changelogen --release && pnpm publish && git push --follow-tags",
"test": "pnpm lint && vitest run --coverage"
},
"dependencies": {
"@parcel/watcher": "^2.4.1",
"@parcel/watcher-wasm": "^2.4.1",
"citty": "^0.1.6",
"clipboardy": "^4.0.0",
"consola": "^3.2.3",
"crossws": ">=0.2.0 <0.4.0",
"defu": "^6.1.4",
"get-port-please": "^3.1.2",
"h3": "^1.12.0",
"http-shutdown": "^1.2.2",
"jiti": "^2.1.2",
"mlly": "^1.7.1",
"node-forge": "^1.3.1",
"pathe": "^1.1.2",
"std-env": "^3.7.0",
"ufo": "^1.5.4",
"untun": "^0.1.3",
"uqr": "^0.1.2"
},
"devDependencies": {
"@types/node": "^22.7.4",
"@types/node-forge": "^1.3.11",
"@vitest/coverage-v8": "^2.1.2",
"automd": "^0.3.9",
"changelogen": "^0.5.7",
"eslint": "^9.11.1",
"eslint-config-unjs": "^0.4.1",
"ip-regex": "^5.0.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"unbuild": "^2.0.0",
"vitest": "^2.1.2"
},
"packageManager": "[email protected]"
}