-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.58 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.58 KB
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
{
"name": "sirine",
"description": "Export function as endpoint",
"version": "0.1.1",
"license": "MIT",
"author": {
"name": "saltyAom",
"url": "https://github.com/SaltyAom",
"email": "saltyaom@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/elysiajs/sirine"
},
"homepage": "https://github.com/elysiajs/sirine",
"bugs": "https://github.com/elysiajs/sirine/issues",
"keywords": [
"sirine",
"elysia",
"web server"
],
"scripts": {
"dev": "bun --watch example/index.ts",
"test": "bun test",
"build": "rimraf dist && bun run build:cjs && bun run build:bun",
"build:bun": "bun build src/index.ts --minify --outfile=dist/index.mjs",
"build:cjs": "tsc --project tsconfig.cjs.json",
"release": "npm run build && npm run test && npm publish"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"bun": "./dist/index.mjs",
"node": "./dist/index.js",
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"dependencies": {
"memoirist": "0.1.4"
},
"peerDependencies": {
"typescript": ">= 5.0.0",
"@whatwg-node/server": ">= 0.9.0"
},
"optionalDependencies": {
"@whatwg-node/server": ">= 0.9.0"
},
"peerDependenciesMeta": {
"@whatwg-node/server": {
"optional": true
}
},
"devDependencies": {
"@whatwg-node/server": "^0.9.22",
"bun-types": "^1.0.15",
"rimraf": "4.4.1",
"zod": "^3.22.4"
}
}