-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.41 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.41 KB
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
58
59
60
61
62
63
64
65
66
67
{
"name": "kapsul",
"version": "1.0.0",
"description": "CLI tool for building and deploying Next.js, Express, and Node.js projects",
"main": "bin/cli.js",
"bin": {
"kapsul": "./bin/cli.js"
},
"scripts": {
"test": "jest",
"dev": "node ./bin/cli.js",
"link": "pnpm link --global",
"prepare": "husky install",
"release": "standard-version",
"lint": "eslint .",
"format": "prettier --write '**/*.{js,json,md}'"
},
"dependencies": {
"axios": "^1.9.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"conf": "^10.2.0",
"form-data": "^4.0.2",
"inquirer": "^8.2.6",
"ora": "^5.4.1",
"archiver": "^5.3.2",
"tar": "^6.2.0"
},
"devDependencies": {
"jest": "^29.7.0",
"husky": "^8.0.3",
"prettier": "^3.1.0",
"eslint": "^8.53.0",
"standard-version": "^9.5.0"
},
"keywords": [
"deployment",
"cli",
"nextjs",
"express",
"nodejs"
],
"author": "Karan",
"license": "MIT",
"engines": {
"node": ">=14",
"pnpm": ">=8"
},
"packageManager": "pnpm@8.15.1",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/username/kapsul-npm.git"
},
"bugs": {
"url": "https://github.com/username/kapsul-npm/issues"
},
"homepage": "https://github.com/username/kapsul-npm#readme",
"files": [
"bin",
"lib",
"docs",
"README.md",
"LICENSE",
"CHANGELOG.md"
]
}