-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 931 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
{
"name": "create-managed-component",
"version": "1.3.6",
"description": "An easy way to create a Managed Component",
"main": "index.ts",
"bin": {
"create-mc": "dist/index.js"
},
"scripts": {
"test": "tsc --noEmit",
"build": "tsc"
},
"engines": {
"node": ">18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/managed-components/create-mc.git"
},
"keywords": [
"managed-components"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/managed-components/create-mc/issues"
},
"homepage": "https://github.com/managed-components/create-mc#readme",
"devDependencies": {
"@types/minimist": "^1.2.2",
"@types/prompts": "^2.0.14",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"dependencies": {
"chalk": "^4.1.2",
"locreq": "^2.1.0",
"minimist": "^1.2.6",
"prompts": "^2.4.2"
}
}