forked from rvgpl/meta
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 791 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 791 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
{
"name": "@graphif/url-meta",
"private": true,
"description": "An API server for retrieving meta data of web pages",
"author": "zty012 <z@2y.nz>",
"license": "MIT",
"version": "1.0.50",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "bun run --watch src/index.ts",
"build:prod": "bun build --target=bun src/index.ts --outfile=dist/index.js",
"start": "bun dist/index.js"
},
"dependencies": {
"@elysiajs/cors": "^1.4.0",
"@elysiajs/html": "^0.7.3",
"@elysiajs/static": "^0.7.1",
"@sinclair/typebox": "^0.34.41",
"cheerio": "^1.0.0-rc.12",
"elysia": "^1.4.10",
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/web": "^0.0.119",
"bun-types": "latest"
},
"module": "src/index.js"
}