-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.48 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
{
"name": "@elysiajs/server-timing",
"version": "0.7.0",
"description": "Plugin for Elysia for performance audit via server timing",
"author": {
"name": "saltyAom",
"url": "https://github.com/SaltyAom",
"email": "saltyaom@gmail.com"
},
"main": "./dist/index.js",
"exports": {
"bun": "./dist/index.js",
"node": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"types": "./src/index.ts",
"keywords": [
"elysia",
"server-timing"
],
"homepage": "https://github.com/elysiajs/elysia-server-timing",
"repository": {
"type": "git",
"url": "https://github.com/elysiajs/elysia-server-timing"
},
"bugs": "https://github.com/elysiajs/elysia-server-timing/issues",
"license": "MIT",
"scripts": {
"dev": "bun run --watch 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"
},
"peerDependencies": {
"elysia": ">= 0.7.20"
},
"devDependencies": {
"@types/node": "^20.1.4",
"bun-types": "^0.5.8",
"elysia": "0.7.20",
"eslint": "^8.40.0",
"rimraf": "4.3.1",
"typescript": "^5.0.4"
}
}