-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
133 lines (133 loc) · 3.33 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "textmatrix",
"displayName": "Simple matrix operations on text",
"description": "Manipulate matrices that are represented as text (transpose, rotate. etc.)",
"publisher": "ractive",
"version": "0.2.4",
"license": "MIT",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/ractive/vscode-extension-textmatrix"
},
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Other"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "textmatrix.transpose",
"title": "Transpose text",
"category": "Textmatrix",
"icon": {
"light": "icons/transpose-light.png",
"dark": "icons/transpose-dark.png"
}
},
{
"command": "textmatrix.flipCharacters",
"title": "Flip the characters on every line of the text",
"category": "Textmatrix",
"icon": {
"light": "icons/flip-characters-light.png",
"dark": "icons/flip-characters-dark.png"
}
},
{
"command": "textmatrix.flipLines",
"title": "Flip the lines of the text",
"category": "Textmatrix",
"icon": {
"light": "icons/flip-lines-light.png",
"dark": "icons/flip-lines-dark.png"
}
},
{
"command": "textmatrix.rotate90",
"title": "Rotate text by 90 degrees",
"category": "Textmatrix",
"icon": {
"light": "icons/rotate90-light.png",
"dark": "icons/rotate90-dark.png"
}
},
{
"command": "textmatrix.rotate180",
"title": "Rotate text by 180 degrees",
"category": "Textmatrix",
"icon": {
"light": "icons/rotate180-light.png",
"dark": "icons/rotate180-dark.png"
}
},
{
"command": "textmatrix.rotate270",
"title": "Rotate text by 270 degrees",
"category": "Textmatrix",
"icon": {
"light": "icons/rotate270-light.png",
"dark": "icons/rotate270-dark.png"
}
}
],
"menus": {
"editor/context": [
{
"command": "textmatrix.transpose",
"group": "2_textmatrix@1"
},
{
"command": "textmatrix.flipCharacters",
"group": "2_textmatrix@2"
},
{
"command": "textmatrix.flipLines",
"group": "2_textmatrix@3"
},
{
"command": "textmatrix.rotate90",
"group": "2_textmatrix@4"
},
{
"command": "textmatrix.rotate180",
"group": "2_textmatrix@5"
},
{
"command": "textmatrix.rotate270",
"group": "2_textmatrix@6"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "biome lint src",
"format": "biome format --write src",
"test": "vscode-test"
},
"devDependencies": {
"@biomejs/biome": "^2.5.3",
"@types/mocha": "^10.0.10",
"@types/node": "^20.19.43",
"@types/vscode": "^1.90.0",
"@vscode/test-cli": "^0.0.15",
"@vscode/test-electron": "^3.0.0",
"@vscode/vsce": "^3.9.2",
"esbuild": "^0.28.1",
"npm-run-all2": "^9.0.2",
"typescript": "^7.0.2"
}
}