-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.23 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
{
"name": "fetch-site-metadata",
"version": "0.2.0",
"description": "High-performance metadata scraper",
"type": "module",
"exports": "./dist/index.js",
"files": [
"dist/**/*.js",
"dist/**/*.ts"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.dist.json",
"test": "ava",
"typecheck": "tsc"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabon-f/fetch-site-metadata.git"
},
"keywords": [
"metadata",
"og"
],
"author": "fabon <syobon.hinata.public@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fabon-f/fetch-site-metadata/issues"
},
"homepage": "https://github.com/fabon-f/fetch-site-metadata#readme",
"dependencies": {
"entities": "^7.0.0",
"html-rewriter-wasm": "^0.4.1",
"image-dimensions": "^2.5.0"
},
"devDependencies": {
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^25.0.3",
"async-listen": "^3.1.0",
"ava": "^6.4.1",
"rimraf": "^6.1.2",
"tsimp": "^2.0.12",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.26.1",
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--import=tsimp"
]
}
}