-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 914 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
{
"name": "mye2d",
"version": "0.0.7",
"type": "module",
"description": "The companion cli for my-engine-2d",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"watch": "npx tsc -w"
},
"bin": {
"mye2d": "dist/index.js"
},
"keywords": [
"cli",
"my-engine-2d"
],
"author": "Lorenzo Corbella",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/LorenzoCorbella74/mye2d-cli.git"
},
"dependencies": {
"@inquirer/prompts": "^5.3.2",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"figlet": "^1.7.0",
"fs-extra": "^11.2.0",
"mye2d": "^0.0.2",
"ora": "^8.0.1",
"simple-git": "^3.25.0"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/figlet": "^1.5.8",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.14.12",
"@types/ora": "^3.2.0",
"typescript": "^5.5.4"
}
}