-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.07 KB
/
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
46
47
48
49
{
"name": "@oovo/launchpad",
"description": "All-in-One Project Init Tool for Devs",
"version": "0.0.14",
"type": "commonjs",
"main": "index.js",
"bin": {
"launchpad": "./bin/launchpad"
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"publish:npm": "npm run build && npm publish --access public",
"dev:link": "npm link",
"dev:makeexecWindows": "git update-index --chmod=+x ./bin/launchpad",
"dev:unlink": "npm unlink -g @oovo/launchpad"
},
"keywords": [
"cli",
"init",
"project",
"generator",
"typescript",
"nodejs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oovolabs/launchpad.git"
},
"author": "oOvo Labs",
"license": "MIT",
"dependencies": {
"@clack/core": "^0.3.4",
"@clack/prompts": "^0.7.0",
"chalk": "^4.1.2",
"gradient-string": "^2.0.2"
},
"devDependencies": {
"@types/gradient-string": "^1.1.6",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=14.0.0"
}
}