forked from elysiajs/elysia-static
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.44 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
{
"name": "@elysiajs/static",
"version": "0.7.1",
"author": {
"name": "saltyAom",
"url": "https://github.com/SaltyAom",
"email": "saltyaom@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/elysiajs/elysia-static"
},
"main": "./dist/index.js",
"devDependencies": {
"@types/node": "^20.1.4",
"bun-types": "^1.0.2",
"elysia": "^0.7.9",
"eslint": "^8.40.0",
"rimraf": "4.4.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"elysia": ">= 0.7.9"
},
"exports": {
"bun": "./dist/index.js",
"node": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"bugs": "https://github.com/elysiajs/elysia-static/issues",
"description": "Plugin for Elysia for serving static folder",
"homepage": "https://github.com/elysiajs/elysia-static",
"keywords": [
"elysia",
"static",
"public"
],
"license": "MIT",
"scripts": {
"dev": "bun run --hot example/index.ts",
"test": "bun test && npm run test:node",
"test:node": "npm install --prefix ./test/node/cjs/ && npm install --prefix ./test/node/esm/ && node ./test/node/cjs/index.js && node ./test/node/esm/index.js",
"build": "rimraf dist && tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json",
"release": "npm run build && npm run test && npm publish --access public"
},
"types": "./src/index.ts"
}