-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.2 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
{
"name": "jump-free",
"displayName": "Jump Free",
"description": "%extension.description%",
"version": "1.0.1",
"publisher": "hekaigustav",
"icon": "img/logo.png",
"engines": {
"vscode": "^1.64.0"
},
"repository": {
"type": "git",
"url": "https://github.com/HEKEH/JumpFree"
},
"bugs": {
"url": "https://github.com/HEKEH/JumpFree/issues"
},
"categories": [
"Other"
],
"keywords": [
"jump",
"free",
"navigation",
"anywhere",
"link",
"connection",
"ripgrep"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"l10n": "./l10n",
"contributes": {
"commands": []
},
"scripts": {
"publish": "ts-node ./scripts/vsce.ts publish",
"vscode:prepublish": "ts-node scripts/check-before-package.ts && npm run compile",
"package": "ts-node ./scripts/vsce.ts package",
"compile": "npm run clean && webpack --mode production",
"postcompile": "ts-node scripts/check-after-compile.ts",
"watch": "npm run clean && webpack --watch",
"clean": "rimraf dist",
"lint": "eslint src --ext ts",
"test": "vscode-test",
"prepare": "husky install"
},
"dependencies": {
"@vscode/ripgrep": "^1.15.9",
"ignore": "^5.3.1",
"lodash": "^4.17.21",
"minimatch": "^9.0.4"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@cspell/eslint-plugin": "^8.8.1",
"@types/lodash": "^4.17.4",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.17.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vscode/test-cli": "^0.0.8",
"@vscode/test-electron": "^2.3.9",
"dotenv": "^16.4.5",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"lint-staged": "^10.2.10",
"prettier": "^2.8.8",
"rimraf": "^5.0.7",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --fix --color"
]
}
}