-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 1.84 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 1.84 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
{
"activationEvents": [
"onStartupFinished"
],
"author": {
"name": "BB9z",
"url": "https://github.com/BB9z"
},
"capabilities": {
"virtualWorkspaces": true
},
"categories": [
"Other"
],
"contributes": {
"commands": [
{
"category": "B9AutoFold",
"command": "B9AutoFold.debugSymbols",
"title": "Export Symbols for Debugging"
},
{
"category": "B9AutoFold",
"command": "B9AutoFold.refold",
"title": "Refold Current File"
}
],
"configuration": {
"properties": {
"B9AutoFold.uncommittedChanges.enable": {
"default": true,
"description": "Do not fold lines with uncommitted changes.",
"type": "boolean"
}
},
"title": "B9AutoFold"
}
},
"description": "Automatically fold code when opening files",
"devDependencies": {
"@biomejs/biome": "latest",
"@types/jest": "latest",
"@types/node": "^22.19",
"@types/vscode": "~1.90.0",
"@vscode/vsce": "latest",
"esbuild": "latest",
"jest": "latest",
"ovsx": "latest",
"ts-jest": "latest",
"typescript": "latest"
},
"displayName": "B9AutoFold",
"engines": {
"vscode": ">=1.90.0"
},
"icon": "icon.png",
"keywords": [
"ai review",
"auto smart fold",
"code folding",
"code review",
"editor",
"fold regions",
"folding",
"vibe coding",
"折叠",
"代码检视"
],
"license": "MIT",
"main": "./dist/extension.js",
"name": "vsx-fold",
"private": true,
"publisher": "b9software",
"repository": {
"type": "git",
"url": "https://github.com/b9software/B9AutoFold.git"
},
"scripts": {
"check": "biome check --write --unsafe && pnpm compile && jest",
"compile": "tsc --noEmit && node esbuild.js",
"package": "vsce package",
"publish": "vsce publish",
"test": "jest",
"vscode:prepublish": "rm -rf dist && node esbuild.js --production",
"watch": "node esbuild.js --watch"
},
"version": "0.8.1"
}