-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.11 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.11 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
{
"name": "vscode-archiver",
"displayName": "Archiver",
"description": "Workspace Folder Archiver",
"version": "1.1.2",
"license": "MIT",
"publisher": "ecmel",
"author": {
"name": "Ecmel Ercan",
"url": "https://ecmel.dev/"
},
"sponsor": {
"url": "https://github.com/sponsors/ecmel"
},
"repository": {
"type": "git",
"url": "https://github.com/ecmel/vscode-archiver.git"
},
"bugs": "https://github.com/ecmel/vscode-archiver/issues",
"homepage": "https://github.com/ecmel/vscode-archiver",
"categories": [
"Other"
],
"keywords": [
"archive",
"backup",
"zip",
"workspace",
"folder",
"git",
"degit",
"multi-root ready"
],
"contributes": {
"configuration": {
"title": "Archiver",
"properties": {
"archiver.outputPath": {
"type": "string",
"scope": "resource",
"description": "Relative or absolute path to archived files.",
"default": ""
},
"archiver.includeGitFolders": {
"type": "string",
"scope": "resource",
"description": "Whether to include .git folders in archive.",
"default": "Ask",
"enum": [
"Ask",
"Yes",
"No"
]
}
}
},
"commands": [
{
"command": "vscode-archiver.archive",
"title": "Archive workspace folder"
}
]
},
"capabilities": {
"untrustedWorkspaces": {
"supported": false
},
"virtualWorkspaces": true
},
"main": "./dist/extension.js",
"icon": "icon.png",
"scripts": {
"clean": "git clean -Xdf",
"prereset": "npm run clean",
"reset": "npm install",
"format": "prettier --ignore-path .gitignore -w --list-different .",
"debug": "rollup -c --configPlugin typescript -w",
"build": "rollup -c --configPlugin typescript --forceExit",
"compile": "tsc -p ./ --outDir out --sourceMap true --module commonjs --moduleResolution node",
"pretest": "npm run build && npm run compile",
"test": "node ./out/test/runTest.js",
"coverage": "c8 -n out/src npm run test",
"update": "npx npm-check-updates --target minor -u -x prettier -x @types/vscode",
"vscode:prepublish": "npm run build",
"package": "vsce package",
"publish": "vsce publish"
},
"engines": {
"vscode": "^1.75.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "25.0.8",
"@rollup/plugin-node-resolve": "15.3.1",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.6",
"@types/archiver": "6.0.4",
"@types/ignore-walk": "4.0.3",
"@types/mocha": "10.0.10",
"@types/mock-fs": "4.13.4",
"@types/node": "20.19.33",
"@types/sinon": "17.0.4",
"@types/vscode": "1.75.0",
"@vscode/test-electron": "2.5.2",
"@vscode/vsce": "3.7.1",
"archiver": "6.0.2",
"c8": "9.1.0",
"fast-glob": "3.3.3",
"ignore-walk": "6.0.5",
"mocha": "10.8.2",
"mock-fs": "5.5.0",
"prettier": "2.8.8",
"rollup": "4.57.1",
"rollup-plugin-cleandir": "2.0.0",
"sinon": "17.0.2",
"tslib": "2.8.1",
"typescript": "5.9.3"
}
}