-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.86 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.86 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
{
"name": "url-preview-engine",
"version": "0.1.0",
"description": "URL을 interaction-aware preview card object로 정규화하는 embed-capable preview engine",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"build": "tsup src/index.ts --format cjs,esm --dts",
"demo": "npm run build && node demo/server.mjs",
"demo:serve": "node demo/server.mjs",
"test": "vitest --config vitest.config.ts",
"test:run": "vitest --config vitest.config.ts --run",
"test:unit": "vitest --config vitest.config.ts --run tests/unit",
"test:integration": "vitest --config vitest.config.ts --run tests/integration",
"test:coverage": "vitest --config vitest.config.ts --run --coverage",
"typecheck:test": "tsc -p tsconfig.test.json --noEmit",
"lint": "eslint \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"url",
"preview",
"metadata",
"opengraph",
"link-preview",
"card",
"embed"
],
"author": "Kangminna <nakangmin4023@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^8.0.0",
"prettier": "^3.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"dependencies": {
"link-preview-js": "^4.0.0",
"metascraper": "^5.0.0",
"metascraper-author": "^5.0.0",
"metascraper-date": "^5.0.0",
"metascraper-description": "^5.0.0",
"metascraper-image": "^5.0.0",
"metascraper-title": "^5.0.0",
"metascraper-url": "^5.0.0",
"open-graph-scraper": "^6.11.0",
"playwright": "^1.58.2",
"zod": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}