-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
164 lines (164 loc) · 4.25 KB
/
package.json
File metadata and controls
164 lines (164 loc) · 4.25 KB
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "global-save-state",
"displayName": "Global Save State",
"description": "Create global save states for your project using VS Code timeline feature",
"version": "1.0.3",
"icon": "icon.jpg",
"publisher": "VKrishna04",
"license": "Apache-2.0",
"keywords": [
"vscode",
"vscode-extension",
"visual-studio-code",
"extension",
"global",
"save",
"state",
"savepoint",
"checkpoint",
"timeline",
"project",
"development",
"backup",
"restore",
"snapshot",
"productivity",
"workflow",
"code-management",
"version-control",
"developer-tools",
"typescript",
"webpack"
],
"homepage": "https://github.com/Life-Experimentalist/global-save-state",
"bugs": {
"url": "https://github.com/Life-Experimentalist/global-save-state/issues",
"email": "krishnagsvv@gmail.com",
"web": "https://github.com/Life-Experimentalist/global-save-state"
},
"qna": "marketplace",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"badges": [
{
"url": "https://img.shields.io/visual-studio-marketplace/v/VKrishna04.global-save-state",
"href": "https://marketplace.visualstudio.com/items?itemName=VKrishna04.global-save-state",
"description": "Version"
},
{
"url": "https://img.shields.io/visual-studio-marketplace/d/VKrishna04.global-save-state",
"href": "https://marketplace.visualstudio.com/items?itemName=VKrishna04.global-save-state",
"description": "Downloads"
},
],
"engines": {
"vscode": "^1.74.0",
"node": ">=16.0.0"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"activationEvents": [
"onCommand:globalSaveState.createSavePoint",
"onCommand:globalSaveState.restoreSavePoint"
],
"contributes": {
"commands": [
{
"command": "globalSaveState.createSavePoint",
"title": "Create Save Point",
"category": "Global Save State"
},
{
"command": "globalSaveState.restoreSavePoint",
"title": "Restore Save Point",
"category": "Global Save State"
}
],
"keybindings": [
{
"command": "globalSaveState.createSavePoint",
"key": "ctrl+shift+s",
"mac": "cmd+shift+s"
},
{
"command": "globalSaveState.restoreSavePoint",
"key": "ctrl+alt+r",
"mac": "cmd+alt+r"
}
],
"menus": {
"commandPalette": [
{
"command": "globalSaveState.createSavePoint"
},
{
"command": "globalSaveState.restoreSavePoint"
}
]
},
"configuration": {
"title": "Global Save State",
"properties": {
"globalSaveState.excludePatterns": {
"type": "array",
"default": [
"**/node_modules/**",
"**/.git/**",
"**/dist/**",
"**/build/**",
"**/.vscode/**",
"**/out/**"
],
"description": "Patterns to exclude from save state creation"
},
"globalSaveState.maxSavePoints": {
"type": "number",
"default": 50,
"description": "Maximum number of save points to keep"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out --sourceMap true",
"watch-tests": "tsc -p . -w --outDir out --sourceMap true",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "mocha --require ts-node/register src/test/**/*.test.ts",
"build": "node .vscode/build.js",
"publish": "npm run build && npx vsce publish"
},
"repository": {
"type": "git",
"url": "https://github.com/Life-Experimentalist/global-save-state"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "16.x",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.57.1",
"globals": "^16.2.0",
"mocha": "^11.5.0",
"ts-loader": "^9.5.2",
"typescript": "^4.9.4",
"typescript-eslint": "^8.32.1",
"@vscode/test-electron": "^1.6.1",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"glob": "^8.0.3"
}
}