-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 871 Bytes
/
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
{
"name": "yocode",
"description": "The VS Code Extension Generator for Modern Development.",
"version": "1.0.0-alpha",
"type": "module",
"author": "Mr Sharafdin",
"license": "MIT",
"main": "./index.js",
"bin": {
"yocode": "./index.js"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"homepage": "https://yocode.org",
"repository": {
"type": "git",
"url": "https://github.com/sharafdin/yocode.git"
},
"keywords": [
"yocode",
"vscode",
"extension",
"generator",
"cli",
"development"
],
"files": [
"LICENSE",
"README.md",
"index.js",
"lib/",
"templates/"
],
"bugs": {
"url": "https://github.com/sharafdin/yocode/issues"
},
"dependencies": {
"commander": "^12.0.0",
"inquirer": "^9.2.20",
"ejs": "^3.1.10",
"ora": "^8.1.1",
"axios": "^1.7.7"
}
}