This repository has been archived by the owner on Jun 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
127 lines (127 loc) · 4.58 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
{
"name": "vscode-extension-profiles",
"displayName": "Extension profiles",
"version": "1.2.4",
"private": false,
"description": "Lets you create profiles to include the selected extensions in the desired project.",
"categories": [
"Other"
],
"keywords": [
"vscode-settings",
"profile",
"extensions",
"extension",
"manager",
"workspace"
],
"repository": {
"type": "git",
"url": "https://github.com/evald24/vscode-extension-profiles"
},
"icon": "assets/icon.png",
"license": "Apache-2.0",
"author": {
"name": "Evald Smalyakov",
"url": "https://github.com/evald24"
},
"publisher": "evald24",
"main": "./out/extension.js",
"scripts": {
"version": "auto-changelog -p && git add CHANGELOG.md",
"vscode:prepublish": "npm run prepackage && npm run compile",
"compile": "rm -rf ./out && tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js",
"prepackage": "cp -R ./bin/sqlite3/ ./node_modules/sqlite3/lib/binding/",
"build": "npm run build:sqlite",
"build:sqlite": "npm run build:sqlite:linux && npm run build:sqlite:win32 && npm run build:sqlite:win64 && npm run build:sqlite:mac && npm run build:sqlite:mac:arm64 && cp -R ./node_modules/sqlite3/lib/binding/ ./bin/sqlite3/",
"build:sqlite:linux": "./node_modules/.bin/node-pre-gyp install --directory=./node_modules/sqlite3 --target_platform=linux --target_arch=x64",
"build:sqlite:win32": "./node_modules/.bin/node-pre-gyp install --directory=./node_modules/sqlite3 --target_platform=win32 --target_arch=ia32",
"build:sqlite:win64": "./node_modules/.bin/node-pre-gyp install --directory=./node_modules/sqlite3 --target_platform=win32 --target_arch=x64",
"build:sqlite:mac": "./node_modules/.bin/node-pre-gyp install --directory=./node_modules/sqlite3 --target_platform=darwin --target_arch=x64",
"build:sqlite:mac:arm64": "./node_modules/.bin/node-pre-gyp install --directory=./node_modules/sqlite3 --target_platform=darwin --target_arch=arm64"
},
"contributes": {
"commands": [
{
"command": "vscode-extension-profiles.Apply",
"title": "Extension profiles: Select and apply profile",
"shortTitle": "Select and apply profile"
},
{
"command": "vscode-extension-profiles.Create",
"title": "Extension profiles: Create profile",
"shortTitle": "Create profile"
},
{
"command": "vscode-extension-profiles.Clone",
"title": "Extension profiles: Clone profile",
"shortTitle": "Clone profile"
},
{
"command": "vscode-extension-profiles.Edit",
"title": "Extension profiles: Edit profile",
"shortTitle": "Edit profile"
},
{
"command": "vscode-extension-profiles.Refresh",
"title": "Extension profiles: Clear cache and refresh the list of installed extensions",
"shortTitle": "Clear cache and refresh the list of installed extensions"
},
{
"command": "vscode-extension-profiles.Delete",
"title": "Extension profiles: Delete profile",
"shortTitle": "Delete profile"
},
{
"command": "vscode-extension-profiles.Export",
"title": "Extension profiles: Export profile",
"shortTitle": "Export profile"
},
{
"command": "vscode-extension-profiles.Import",
"title": "Extension profiles: Import profile",
"shortTitle": "Import profile"
}
]
},
"activationEvents": [
"onCommand:vscode-extension-profiles.Apply",
"onCommand:vscode-extension-profiles.Create",
"onCommand:vscode-extension-profiles.Clone",
"onCommand:vscode-extension-profiles.Edit",
"onCommand:vscode-extension-profiles.Delete",
"onCommand:vscode-extension-profiles.Refresh",
"onCommand:vscode-extension-profiles.Export",
"onCommand:vscode-extension-profiles.Import",
"onStartupFinished"
],
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.9",
"sqlite": "^4.1.1",
"sqlite3": "^5.0.8"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.3",
"@types/node": "14.18.21",
"@types/sqlite3": "^3.1.7",
"@types/vscode": "^1.57.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.33.0",
"auto-changelog": "^2.3.0",
"eslint": "^7.32.0",
"glob": "^7.2.3",
"mocha": "^8.4.0",
"prettier": "2.7.1",
"typescript": "^4.7.3",
"vscode-test": "^1.5.2"
},
"engines": {
"vscode": "^1.57.0"
},
"preview": false
}