forked from qxchuckle/copyright-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.53 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.53 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
{
"name": "export-code",
"displayName": "Export-Code",
"description": "项目代码快速提取至txt",
"version": "1.2.1",
"publisher": "sorkai",
"keywords": [
"export",
"code",
"extract",
"txt",
"导出",
"代码",
"提取",
"extract code",
"export code",
"code export",
"remove comments",
"clean code",
"code review",
"ai analysis",
"documentation",
"代码导出",
"导出代码",
"代码提取",
"去除注释",
"清理代码",
"项目代码"
],
"repository": {
"type": "git",
"url": "https://github.com/Sorkai/export-code.git"
},
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"icon": "images/logo2.png",
"contributes": {
"commands": [
{
"command": "export-code.exportCode",
"title": "Export Code",
"category": "Export-Code"
},
{
"command": "export-code.exportCodeZH",
"title": "导出代码",
"category": "Export-Code"
}
],
"configuration": {
"type": "object",
"title": "Export Code 设置",
"properties": {
"exportCode.skipDirectories": {
"type": "array",
"default": [
"node_modules",
"^\\.",
"uni_modules"
],
"items": {
"type": "string"
},
"description": "需要排除的文件夹和文件"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"package": "vsce package",
"deploy": "vsce publish",
"release:patch": "npm version patch -m 'chore: release v%s'",
"release:minor": "npm version minor -m 'chore: release v%s'",
"release:major": "npm version major -m 'chore: release v%s'"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/minimatch": "^3.0.5",
"@types/mocha": "^10.0.1",
"@types/node": "24.x",
"@types/vscode": "^1.80.0",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"@vscode/test-electron": "^2.3.4",
"@vscode/vsce": "^3.7.1",
"eslint": "^9.39.1",
"glob": "^7.2.3",
"minimatch": "^3.1.2",
"mocha": "^10.8.2",
"typescript": "^5.9.3"
},
"dependencies": {
"istextorbinary": "^9.5.0"
}
}