-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 876 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 876 Bytes
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": "elysia-local-https",
"version": "1.0.2",
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "bun run --watch example/index.ts",
"build": "bun build.ts",
"test": "bun test",
"release": "bun run build && bun run test && npm publish --access public"
},
"keywords": [
"elysia",
"bun",
"https",
"mkcert",
"local-development"
],
"peerDependencies": {
"elysia": ">= 1.0.0"
},
"devDependencies": {
"@types/node": "^22.10.1",
"bun-types": "^1.1.34",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
}
}