-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.32 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
50
51
52
53
54
55
56
57
{
"name": "taco-launch",
"version": "0.0.6",
"description": "init project",
"main": "index.js",
"type": "module",
"bin": {
"taco": "index.js"
},
"keywords": [
"cli",
"template",
"boilerplate"
],
"files": [
"index.js",
"templates",
"dist"
],
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"commit": "git-cz",
"release:major": "standard-version --release-as major",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"homepage": "https://github.com/BlackBerry009/taco-launch",
"repository": {
"type": "git",
"url": "git+https://github.com/BlackBerry009/taco-launch"
},
"bugs": "https://github.com/BlackBerry009/taco-launch/issues",
"author": "BlackBerry",
"license": "ISC",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@clack/prompts": "^0.6.3",
"commander": "^10.0.0",
"fs-extra": "^11.1.1",
"log-symbols": "^5.1.0",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"git-cz": "^4.9.0",
"standard-version": "^9.5.0",
"unbuild": "^1.1.2"
}
}