-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
36 lines (36 loc) · 1012 Bytes
/
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
{
"name": "elysia-vite",
"version": "0.2.0",
"module": "src/index.ts",
"repository": "github:timnghg/elysia-vite",
"type": "module",
"scripts": {
"test": "bun test",
"build": "rimraf dist && npm run build:esm && npm run build:cjs",
"build:esm": "swc src/index.ts -d dist && tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json --module es2020"
},
"devDependencies": {
"bun-types": "latest",
"get-port": "^7.0.0",
"rimraf": "^5.0.5",
"swc": "^1.0.11",
"vite": "^4.4.8"
},
"peerDependencies": {
"elysia": "^0.7.0",
"@elysiajs/html": "^0.7.0"
},
"exports": {
".": {
"bun": "./dist/index.js",
"node": "./dist/cjs/index.js",
"import": "./dist/index.js",
"require": "./dist/cjs/index.js"
}
},
"dependencies": {
"@elysiajs/html": "^0.7.3",
"elysia": "^0.7.17"
}
}