forked from OP-Engineering/link-preview-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.62 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
{
"name": "@dscvr-one/link-preview-js",
"description": "JavaScript module to extract and fetch HTTP link information from blocks of text.",
"version": "0.1.0",
"sideEffects": false,
"type": "module",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "vitest",
"build": "tsc",
"prepublishOnly": "tsc",
"prepare": "is-ci || husky; npm run build",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lintfix": "npm run lint:eslint:fix && npm run lint:prettier:fix",
"lint:eslint": "eslint \"{,!(node_modules|dist)/**/}*.{js,cjs,mjs,ts}\" --ignore-path .gitignore",
"lint:eslint:fix": "eslint --fix \"{,!(node_modules|dist)/**/}*.{js,cjs,mjs,ts}\" --ignore-path .gitignore",
"lint:prettier": "prettier --check \"{,!(node_modules|dist)/**/}*.{js,cjs,mjs,ts}\" --ignore-path .gitignore",
"lint:prettier:fix": "prettier --write \"{,!(node_modules|dist)/**/}*.{js,cjs,mjs,ts}\" --ignore-path .gitignore",
"release": "shipjs prepare",
"release:dry": "shipjs prepare --dry-run",
"release:auto": "shipjs prepare --yes"
},
"dependencies": {
"abort-controller": "^3.0.0",
"cheerio": "1.0.0-rc.12",
"cross-fetch": "3.1.5",
"file-type": "^19.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/cheerio": "^0.22.35",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-anti-trojan-source": "^1.1.1",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-security-node": "^1.1.4",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"shipjs": "^0.26.3",
"typescript": "^5.4.5",
"vitest": "^1.5.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"keywords": [
"javascript",
"link",
"url",
"http",
"preview"
],
"author": {
"name": "Oscar Franco",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dscvr-one/link-preview-js.git"
},
"bugs": {
"url": "https://github.com/dscvr-one/link-preview-js/issues"
},
"homepage": "https://github.com/dscvr-one/link-preview-js#readme"
}