-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.43 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": "url-title-preview",
"displayName": "URL Title Preview",
"description": "Hover over a URL to see its title",
"version": "0.1.0",
"license": "MIT",
"publisher": "baruchiro",
"repository": "https://github.com/baruchiro/url-title-preview",
"icon": "./logo.png",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {},
"capabilities": {
"hoverPRovider": true
},
"scripts": {
"postinstall": "husky",
"predeploy": "yarn run compile",
"deploy": "vsce publish --yarn",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"prettier": "prettier --write .",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.70.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9",
"@vscode/vsce": "^2.29.0",
"eslint": "^8.56.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": ">=4.7.4,<5.4.0"
},
"dependencies": {
"axios": "^1.6.7",
"cheerio": "^1.0.0-rc.12"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}