-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.42 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
108
109
110
111
112
113
114
{
"name": "lazy-new-file",
"displayName": "Lazy New File",
"publisher": "Jhecht",
"description": "Lazily create files based on the current file path",
"repository": {
"url": "https://github.com/jhechtf/lazy-new-file.git",
"type": "git"
},
"license": "MIT",
"version": "1.3.0",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:lazy-new-file.lazyNewFile"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "lazy-new-file.lazyNewFile",
"title": "Lazy New File"
}
],
"configuration": {
"title": "Lazy New File",
"properties": {
"lnf.aliases": {
"title": "Aliases",
"description": "Replaces values to allow for easy creation in certain directories of the workspace",
"type": "object",
"default": {
"$/": "${workspaceRoot}/"
}
},
"lnf.ladderOpen": {
"title": "Ladder open files after creating",
"description": "When creating multiple files in one command, alternates which side of the screen they are opened on",
"type": "boolean",
"default": true,
"scope": "resource"
},
"lnf.alwaysUseCurrentFile": {
"title": "Always use current file",
"description": "Always default to the same base file location as the currently open file (disables workspace selector)",
"type": "boolean",
"default": true,
"scope": "resource"
},
"lnf.openAfterCreate": {
"title": "Open after create",
"description": "Open the new file after creating it.",
"type": "boolean",
"default": true,
"scope": "resource"
},
"lnf.showExplorerItem": {
"title": "Show \"Lazy New File\" in explorer contexts",
"description": "Allows lazy file creation",
"type": "boolean",
"default": true,
"scope": "resource"
}
}
},
"menus": {
"explorer/context": [
{
"group": "2_workspace",
"command": "lazy-new-file.lazyNewFile",
"when": "config.lnf.showExplorerItem && !explorerResourceIsFolder"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir dist",
"watch-tests": "tsc -p . -w --outDir dist",
"pretest": "npm run compile-tests && npm run compile",
"test": "node ./dist/test/runTest.js",
"biome:lint": "biome lint --write ./src",
"biome:format": "biome format --write ./src",
"biome:check": "biome check --write ./src",
"wdio": "wdio run ./wdio.conf.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.8.1",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "~14.18.63",
"@types/vscode": "^1.90.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vscode/test-electron": "^2.4.0",
"@wdio/cli": "^8.38.2",
"glob": "^7.2.3",
"mocha": "^9.2.2",
"prettier": "^3.3.2",
"standard-version": "^9.5.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^4.9.5",
"webpack": "^5.92.0",
"webpack-cli": "^4.10.0"
}
}