-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
148 lines (148 loc) · 4.32 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
142
143
144
145
146
147
148
{
"name": "git-config-user-profiles",
"displayName": "Git Config User Profiles",
"description": "Define multiple git config user profiles and switch them easily using status bar",
"version": "2.1.0",
"publisher": "onlyutkarsh",
"author": "Utkarsh Shigihalli",
"repository": {
"type": "git",
"url": "https://github.com/onlyutkarsh/git-config-user-profiles.git"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#F2F2F2",
"theme": "light"
},
"categories": [
"Other"
],
"keywords": [
"git",
"config",
"multi-root ready"
],
"license": "MIT",
"engines": {
"vscode": "^1.83.0"
},
"extensionKind": [
"workspace"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"activationEvents": [
"*"
],
"extensionDependencies": [
"vscode.git"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run -S esbuild-base -- --minify",
"esbuild-base": "rimraf out && esbuild ./src/extension.ts --tsconfig=src/tsconfig.json --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run -S esbuild-base -- --sourcemap",
"esbuild-watch": "npm run -S esbuild-base -- --sourcemap --watch",
"compile": "tsc -p ./src",
"dev": "npm run compile && npm run esbuild-watch",
"package": "vsce package --allow-star-activation",
"deploy": "vsce publish --allow-star-activation",
"publish:ovsx": "ovsx publish",
"clean": "git clean -fdX",
"pushchanges": "git push && git push --tags"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/fs-extra": "^11.0.4",
"@types/gitconfiglocal": "^2.0.3",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/node": "~20.11.17",
"@types/uuid": "^9.0.8",
"@types/vscode": "^1.83.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@vscode/vsce": "^2.23.0",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-standard-reporter": "^2.0.0",
"mocha-explorer-launcher-scripts": "^0.4.0",
"ovsx": "^0.8.3",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"simple-get": "^4.0.1",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.2",
"typescript": "~5.3.3"
},
"dependencies": {
"simple-git": "~3.22.0",
"uuid": "^9.0.1"
},
"contributes": {
"commands": [
{
"command": "git-config-user-profiles.pickUserProfile",
"title": "Git Config User Profiles: Pick a git config user profile"
},
{
"command": "git-config-user-profiles.createUserProfile",
"title": "Git Config User Profiles: Create a git config user profile"
},
{
"command": "git-config-user-profiles.editUserProfile",
"title": "Git Config User Profiles: Edit an existing user profile"
},
{
"command": "git-config-user-profiles.deleteUserProfile",
"title": "Git Config User Profiles: Delete an existing user profile"
}
],
"configuration": {
"type": "object",
"title": "Git Config User Profiles",
"properties": {
"gitConfigUser.profiles": {
"type": "array",
"items": {
"type": "object",
"title": "inner objects",
"properties": {
"name": {
"type": "string",
"description": "Name of profile. E.g: Work, Home"
},
"username": {
"type": "string",
"description": "user name"
},
"email": {
"type": "string",
"description": "User email"
},
"signingkey": {
"type": "string",
"description": "User signing key"
}
}
},
"default": [],
"description": "Git Config User Profiles configuration"
},
"gitConfigUser.selectMatchedProfileAutomatically": {
"type": "boolean",
"default": true,
"markdownDescription": "Select the matched profile automatically when opening a workspace"
}
}
}
}
}