generated from tjx666/vscode-extension-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
141 lines (141 loc) · 4.84 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "git-bridge",
"displayName": "Git Bridge — Never run 'git clone' again 🪄",
"version": "0.0.2",
"preview": true,
"description": "Clone (at the perfect location !) and open any repository browsed in Chrome with a single click 🚀",
"publisher": "leorolland",
"icon": "images/logo.png",
"license": "SEE LICENSE IN LICENSE",
"main": "dist/extension.js",
"scripts": {
"vscode:prepublish": "npm run build",
"compile": "cross-env NODE_ENV=development ts-node --files -P ./scripts/tsconfig.json ./scripts",
"watch": "cross-env NODE_ENV=development ts-node --files -P ./scripts/tsconfig.json ./scripts --watch",
"test-compile": "tsc -p ./test/tsconfig.json",
"watch-tests": "tsc -w -p ./test/tsconfig.json",
"build": "cross-env NODE_ENV=production ts-node --files -P ./scripts/tsconfig.json ./scripts",
"build-analyze": "npm run build -- --analyze",
"lint": "eslint -c .eslintrc.js --ext .ts ./{scripts,src,test}/**/*.ts",
"test": "npm run compile && npm run test-compile && node ./dist/test/runTests.js",
"prepare": "husky install"
},
"author": {
"name": "Léo Rolland",
"url": "https://github.com/leorolland",
"email": "rolland.leo@orange.fr"
},
"badges": [
{
"url": "https://img.shields.io/badge/License-MIT-brightgreen.svg",
"description": "License: MIT",
"href": "https://github.com/leorolland/git-bridge-vscode/blob/master/LICENSE"
},
{
"url": "https://img.shields.io/badge/PRs-welcome-brightgreen.svg",
"description": "PRs Welcome",
"href": "https://github.com/leorolland/git-bridge-vscode"
}
],
"homepage": "https://github.com/leorolland/git-bridge-vscode",
"bugs": {
"url": "https://github.com/leorolland/git-bridge-vscode/issues",
"email": "rolland.leo@orange.fr"
},
"repository": {
"type": "git",
"url": "https://github.com/leorolland/git-bridge-vscode"
},
"engines": {
"vscode": "^1.51.0",
"node": ">=14.15.1"
},
"categories": [
"SCM Providers",
"Other"
],
"keywords": [
"bridge",
"git",
"open",
"clone",
"chrome"
],
"activationEvents": [
"onUri"
],
"contributes": {
"configuration": {
"title": "GitBridge",
"properties": {
"gitbridge.repositoriesRoot": {
"type": "string",
"default": "$HOME/repositories",
"description": "The root folder where the remote repositories will be cloned"
},
"gitbridge.preferrredProtocol": {
"type": "string",
"default": "ssh",
"enum": [
"ssh",
"http"
],
"enumDescriptions": [
"Clone using SSH",
"Clone using HTTP(s)"
]
}
}
}
},
"lint-staged": {
"*.ts": [
"eslint -c .eslintrc.js",
"format-imports --config .vscode/import-sorter.json"
],
"*.{ts,json,md}": [
"prettier --write"
]
},
"devDependencies": {
"@nuxt/friendly-errors-webpack-plugin": "^2.5.2",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"@types/terser-webpack-plugin": "^5.2.0",
"@types/vscode": "1.51.0",
"@types/webpack": "^5.28.0",
"@types/webpack-bundle-analyzer": "^4.4.1",
"@types/webpack-merge": "^5.0.0",
"@types/webpackbar": "^4.0.3",
"@types/yargs": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"@vscode/test-electron": "^2.1.3",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^41.0.0",
"format-imports": "^3.0.1",
"glob": "^7.2.0",
"husky": "7.0.4",
"lint-staged": "^12.3.5",
"mocha": "^9.2.2",
"prettier": "^2.5.1",
"speed-measure-webpack-plugin": "^1.5.0",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"vsce": "^2.7.0",
"webpack": "^5.70.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-merge": "^5.8.0",
"webpackbar": "^5.0.2",
"yargs": "^17.3.1"
}
}