-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.76 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
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": "theta",
"license": "MIT",
"icon": "icon.png",
"galleryBanner": {
"color": "#D0DAE0",
"theme": "light"
},
"publisher": "unusoft",
"repository": {
"type": "git",
"url": "https://github.com/aranor01/theta"
},
"bugs": {
"url": "https://github.com/aranor01/theta/issues"
},
"displayName": "Theta θ",
"description": "Transform current line, word, document, selection or clipboard by eta templates.",
"version": "0.9.4",
"engines": {
"vscode": "^1.96.0"
},
"categories": [
"Snippets",
"Other"
],
"keywords": [
"Script",
"Tools",
"Productivity",
"Templates"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "Theta",
"properties": {
"theta.templatesPath": {
"type": "string",
"default": null,
"description": "Specifies the folder path containing the *.eta template files."
},
"theta.defaultSelection": {
"type": "string",
"default": "line",
"enum": [
"none",
"word",
"line",
"document"
],
"description": "Define portion of the text used as input by transform commands when selection is empty. It can be overridden by template configuration.",
"enumDescriptions": [
"When selection is empty do nothing.",
"Current word.",
"Current line.",
"Whole document."
]
},
"theta.formatOnPaste": {
"type": "boolean",
"default": null,
"description": "Overrides editor.formatOnPaste. It can be overridden by template configuration."
}
}
},
"commands": [
{
"command": "theta.copyAndTransform",
"title": "Theta: Transform Selection and Copy"
},
{
"command": "theta.transformAndPaste",
"title": "Theta: Transform Clipboard and Paste"
},
{
"command": "theta.transformSelection",
"title": "Theta: Transform Selection"
}
]
},
"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"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.10",
"@types/node": "^18.19.68",
"@types/vscode": "^1.96.0",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"eslint": "^8.57.1",
"node": "^23.5.0",
"typescript": "^5.7.2"
},
"dependencies": {
"eta": "^3.5.0",
"js-yaml": "^4.1.0"
}
}