-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 906 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 906 Bytes
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
{
"name": "vscode-toolbox",
"version": "1.1.3",
"scripts": {
"cli": "node src/cli.ts",
"prebuild": "rm -r dist || mkdir dist",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"type": "module",
"homepage": "https://github.com/shanto/vscode-toolbox",
"author": {
"name": "Shaan",
"email": "mail@shaan.icu",
"url": "https://github.com/shanto"
},
"license": "MIT",
"description": "Mange profiles and extensions under VS Code and other IDE products built from it.",
"dependencies": {
"commander": "^14.0.2",
"js-yaml": "^4.1.0",
"prompts": "^2.4.2",
"title-case": "^4.3.2"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.10.0",
"@types/prompts": "^2.4.9"
},
"main": "dist/cli.js",
"bin": {
"vscode-toolbox": "dist/cli.js"
},
"files": [
"dist/*",
"*.md",
"package.json"
]
}