-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
49
50
51
52
53
54
55
56
57
{
"name": "@jcottam/html-metadata",
"description": "This JavaScript library simplifies the extraction of HTML Meta and OpenGraph tags from HTML content or URLs.",
"version": "3.0.3",
"author": "John Ryan Cottam <https//www.johnryancottam.com>",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/jcottam/html-metadata.git"
},
"bugs": {
"url": "https://github.com/jcottam/html-metadata/issues"
},
"homepage": "https://github.com/jcottam/html-metadata#readme",
"keywords": [
"social",
"metadata",
"parser",
"cheerio",
"seo",
"open-graph",
"scrape",
"og-tags",
"webpage-scraper",
"html-metadata",
"html-meta-tags"
],
"scripts": {
"build": "rm -rf dist && rollup --config",
"test": "vitest",
"release": "release-it"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"release-it": "^17.2.1",
"rollup": "^4.19.1",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"vite": "^5.3.5",
"vitest": "^1.6.0"
},
"release-it": {
"github": {
"release": true
}
},
"dependencies": {
"cheerio": "^1.0.0-rc.12"
}
}