-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 2.7 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"publishConfig": {
"access": "public"
},
"version": "1.1.1",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": ["dist", "src"],
"engines": {
"node": ">=12"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"typecheck": "tsc -b",
"prepare": "tsdx build; is-ci || husky install",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint && tsc -b"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@nzambello/link-previewer",
"author": "nzambello",
"description": "Node util to retrieve preview info from a link (og tags, meta tags, images, videos)",
"repository": {
"type": "git",
"url": "https://github.com/nzambello/link-previewer.git"
},
"homepage": "https://github.com/nzambello/link-previewer",
"keywords": [
"node",
"nodejs",
"opengraph",
"opengraph-tags",
"og-tags",
"link-preview",
"preview",
"previewer"
],
"module": "dist/link-previewer.esm.js",
"size-limit": [
{
"path": "dist/link-previewer.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/link-previewer.esm.js",
"limit": "10 KB"
}
],
"release-it": {
"git": {
"tagName": "v${version}",
"commitMessage": "chore: release v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true,
"releaseName": "${version}"
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "refactor",
"section": "Changes"
},
{
"type": "chore",
"section": "Maintenance"
}
]
}
}
}
},
"devDependencies": {
"@commitlint/cli": "16.2.4",
"@commitlint/config-conventional": "16.2.4",
"@release-it/conventional-changelog": "4.3.0",
"@size-limit/preset-small-lib": "7.0.8",
"@types/cheerio": "0.22.31",
"husky": "7.0.4",
"is-ci": "3.0.1",
"release-it": "14.14.2",
"size-limit": "7.0.8",
"tsdx": "0.14.1",
"tslib": "2.4.0",
"typescript": "4.6.3"
},
"dependencies": {
"cheerio": "1.0.0-rc.10",
"cross-fetch": "3.1.5"
}
}