-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.16 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
{
"name": "git-livesync",
"displayName": "git-livesync",
"publisher": "bwfiq",
"description": "Watch for file changes and sync them to a remote repository.",
"version": "0.1.2",
"engines": {
"vscode": "^1.96.0"
},
"categories": [
"Other"
],
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/bwfiq/git-livesync",
"bugs": {
"url": "https://github.com/bwfiq/git-livesync/issues",
"email": "mohammadrafiq567@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/bwfiq/git-livesync.git"
},
"activationEvents": [
"workspaceContains:**/.git",
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [],
"configuration": [
{
"title": "git-livesync",
"properties": {
"git-livesync.enabled": {
"type": "boolean",
"default": false,
"scope": "resource",
"description": "CAUTION: DO NOT ENABLE THIS FOR USER UNLESS YOU KNOW WHAT YOU ARE DOING! Specifies whether to enable this extension in this workspace."
},
"git-livesync.autoPull": {
"type": "boolean",
"default": true,
"scope": "resource",
"markdownDescription": "Enables automatically pulling from the current branch after a delay configured by `#git-livesync.autoPullDelay#`."
},
"git-livesync.autoPullDelay": {
"type": "integer",
"default": 5,
"scope": "resource",
"markdownDescription": "If `#git-livesync.autoPull#` is enabled, automatically pulls from the remote branch every X seconds."
},
"git-livesync.autoCommitAndSync": {
"type": "boolean",
"default": true,
"scope": "resource",
"markdownDescription": "Enables automatically committing to the remote branch after a delay configured by `#git-livesync.autoCommitAndSyncDelay#`."
},
"git-livesync.autoCommitAndSyncDelay": {
"type": "integer",
"default": 30,
"scope": "resource",
"markdownDescription": "If `#git-livesync.autoCommitAndSync#` is enabled, automatically commits to the remote branch on a file change if it is X seconds after the last commit."
}
}
}
]
},
"scripts": {
"compile": "npm run check-types && node esbuild.js",
"check-types": "tsc --noEmit",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"vscode:prepublish": "npm run package",
"package": "npm run check-types && node esbuild.js --production"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.96.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"esbuild": "^0.24.2",
"eslint": "^9.19.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.7.3"
},
"dependencies": {
"ignore": "^7.0.3",
"simple-git": "^3.27.0"
}
}