-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
181 lines (181 loc) · 5 KB
/
package.json
File metadata and controls
181 lines (181 loc) · 5 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"name": "scaffdog-vscode",
"displayName": "scaffdog",
"version": "0.1.0",
"private": true,
"description": "Markdown driven scaffolding tool",
"categories": [
"Snippets",
"Other"
],
"keywords": [
"scaffdog",
"scaffold",
"scaffolding",
"generator",
"boilerplate",
"markdown",
"template"
],
"homepage": "https://marketplace.visualstudio.com/items?itemName=scaffdog.scaffdog-vscode",
"bugs": {
"url": "https://github.com/scaffdog/vscode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/scaffdog/vscode.git"
},
"license": "MIT",
"author": {
"name": "wadackel"
},
"publisher": "scaffdog",
"main": "./dist/extension.js",
"scripts": {
"vscode:prepublish": "pnpm prod",
"watch": "run-p watch:*",
"watch:main": "pnpm build:main --watch",
"watch:worker": "pnpm build:worker --watch",
"clean": "rimraf dist",
"package": "vsce package --no-dependencies",
"typecheck": "tsc",
"build": "run-p build:*",
"build:main": "esbuild ./src/main/index.ts --bundle --sourcemap --outfile=dist/extension.js --external:vscode --format=cjs --platform=node",
"build:worker": "node build.worker.mjs",
"prod": "run-p prod:*",
"prod:main": "pnpm build:main --minify",
"prod:worker": "pnpm build:worker --minify",
"lint": "run-s lint:*",
"lint:prettier": "prettier --check .",
"lint:script": "eslint src --ext ts",
"format": "run-s format:prettier format:script",
"format:prettier": "prettier --write .",
"format:script": "pnpm lint:script --fix",
"changelog": "changeset add",
"release": "changeset publish",
"deploy": "vsce publish --no-dependencies",
"prepare": "husky install"
},
"contributes": {
"commands": [
{
"command": "scaffdog.runInSelectedFolder",
"title": "Run scaffdog in selected folder",
"category": "scaffdog"
},
{
"command": "scaffdog.openOutput",
"title": "Open output channel",
"category": "scaffdog"
}
],
"configuration": {
"title": "Scaffdog",
"type": "object",
"properties": {
"scaffdog.enable": {
"type": "boolean",
"default": true,
"markdownDescription": "Enables and disables the scaffdog extension."
},
"scaffdog.debug": {
"type": "boolean",
"default": false,
"markdownDescription": "Enable debug logging."
},
"scaffdog.project": {
"type": "string",
"default": ".scaffdog",
"markdownDescription": "The scaffdog project folder to be searched. To specify multiple folders, enter values separated by commas."
},
"scaffdog.force": {
"type": "boolean",
"default": false,
"markdownDescription": "Forces overwriting of existing files without opening a confirmation dialog."
}
}
},
"menus": {
"commandPalette": [
{
"command": "scaffdog.runInSelectedFolder",
"when": "explorerResourceIsFolder && scaffdog.enabled"
}
],
"explorer/context": [
{
"command": "scaffdog.runInSelectedFolder",
"when": "explorerResourceIsFolder && scaffdog.enabled",
"group": "navigation@99"
}
]
}
},
"activationEvents": [
"onStartupFinished"
],
"lint-staged": {
"*.{js,jsx,cjs,ts,tsx,css,md,yml,json}": [
"prettier --write"
]
},
"prettier": {
"arrowParens": "always",
"plugins": [
"prettier-plugin-packagejson"
],
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@scaffdog/engine": "3.0.0-canary.1",
"find-up": "^6.3.0",
"globby": "^13.1.3",
"plur": "^5.1.0",
"resolve": "^1.22.2",
"scaffdog": "3.0.0-canary.1",
"semver": "^7.5.4",
"zod": "^3.21.4"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.2",
"@types/glob": "8.1.0",
"@types/mocha": "10.0.1",
"@types/node": "18.17.1",
"@types/resolve": "1.20.2",
"@types/semver": "7.5.0",
"@types/vscode": "1.60.0",
"@typescript-eslint/eslint-plugin": "6.2.1",
"@typescript-eslint/parser": "6.2.1",
"@vscode/test-electron": "2.3.3",
"@vscode/vsce": "2.19.0",
"esbuild": "0.18.17",
"eslint": "8.46.0",
"glob": "8.1.0",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"mocha": "10.2.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"prettier-plugin-packagejson": "2.4.5",
"rimraf": "5.0.1",
"ts-loader": "9.4.2",
"typescript": "5.1.6"
},
"packageManager": "pnpm@8.6.11",
"engines": {
"vscode": "^1.60.0"
},
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#ebebeb",
"theme": "light"
},
"capabilities": {
"untrustedWorkspaces": {
"supported": false,
"description": "The extension requires workspace trust because it loads configuration files and code from the workspace and executes it."
}
}
}