-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.72 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
{
"name": "gzip-unzip-text",
"description": "Gzip text and encode it to Base64 and unzip Base64 encoded text.",
"version": "0.3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/xballoy/vscode-gzip-unzip-text.git"
},
"author": "Xavier Balloy",
"license": "MIT",
"bugs": {
"url": "https://github.com/xballoy/vscode-gzip-unzip-text/issues"
},
"homepage": "https://github.com/xballoy/vscode-gzip-unzip-text#readme",
"publisher": "xballoy",
"displayName": "Gzip / Unzip text",
"engines": {
"vscode": "^1.66.0"
},
"categories": ["Other"],
"activationEvents": ["onCommand:gzip-unzip-text.gzip", "onCommand:gzip-unzip-text.unzip"],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "gzip-unzip-text.gzip",
"title": "Gzip text to Base64"
},
{
"command": "gzip-unzip-text.unzip",
"title": "Unzip Base64 encoded text"
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "node esbuild.js",
"package": "node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"quality:fix": "biome check --write --no-errors-on-unmatched",
"quality:check": "biome check --no-errors-on-unmatched",
"quality:ci": "biome ci --no-errors-on-unmatched",
"pretest": "npm run compile-tests && npm run compile",
"test": "vscode-test"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@swc/core": "1.10.14",
"@types/node": "22.13.1",
"@types/vscode": "1.97.0",
"@vscode/test-cli": "0.0.10",
"@vscode/test-electron": "2.4.1",
"esbuild": "0.24.2",
"fast-check": "3.23.2",
"swc-loader": "0.2.6",
"typescript": "5.7.3"
}
}