-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 785 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 785 Bytes
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
{
"name": "vercel-submodules",
"description": "The CLI to handle Private Git Submodules in your Vercel Project",
"version": "1.1.0",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/junhoyeo/vercel-submodules",
"author": "Junho Yeo <i@junho.io>",
"license": "MIT",
"bin": {
"vercel-submodules": "./bin/run.js"
},
"scripts": {
"build": "tsc",
"lint": "prettier --check .",
"start": "node lib/index.js"
},
"dependencies": {
"git-url-parse": "^13.1.0",
"zx": "^7.2.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^3.7.1",
"@types/node": "^18.14.6",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"files": [
"./bin",
"./lib"
]
}