-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.29 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
{
"name": "@dhzh/http-server",
"type": "module",
"version": "1.0.1",
"description": "A TypeScript implement of http-server",
"author": {
"name": "tinywaves",
"email": "dhzhme@gmail.com"
},
"license": "MIT",
"homepage": "https://github.com/tinywaves/http-server",
"keywords": [
"typescript",
"http-server"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"htttp-server": "./bin/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"build:dev": "tsup --watch",
"dev": "tsx watch --clear-screen=false src/index.ts",
"dev:cli": "tsx watch --clear-screen=false src/cli.ts",
"release": "pnpm build && bumpp",
"release:publish": "pnpm release && pnpm publish --access=public"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ejs": "^3.1.10",
"mime": "^4.0.4",
"uuid": "^11.0.3"
},
"devDependencies": {
"@dhzh/eslint-config": "^0.15.1",
"@types/ejs": "^3.1.5",
"@types/node": "^22.10.1",
"bumpp": "^9.8.1",
"eslint": "^9.16.0",
"eslint-plugin-format": "^0.1.3",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}