-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
35 lines (35 loc) · 941 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
{
"name": "create-melange-app",
"version": "1.3.0",
"description": "create-melange-app",
"repository": {
"type": "git",
"url": "github.com/dmmulroy/create-melange-app"
},
"author": "Dillon Mulroy <[email protected]>",
"license": "MIT",
"type": "module",
"main": "lib/main/index.js",
"typings": "lib/main/index.d.ts",
"module": "lib/module/index.js",
"exports": "./build/src/cli.mjs",
"bin": {
"create-melange-app": "./build/src/cli.mjs"
},
"scripts": {
"publish-patch": "npm version patch && npm publish",
"publish-minor": "npm version minor && npm publish",
"publish-major": "npm version major && npm publish"
},
"dependencies": {
"@inkjs/ui": "^1.0.0",
"commander": "^11.1.0",
"fs-extra": "^11.2.0",
"handlebars": "^4.7.8",
"ink": "v4.3.1",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"ink-link": "^3.0.0",
"open": "^10.0.2"
}
}