-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.31 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "degitlab",
"type": "module",
"version": "0.0.6",
"packageManager": "pnpm@7.2.1",
"description": "",
"author": "Dohooo <zhaodonghao586@outlook.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/dohooo",
"homepage": "https://github.com/dohooo/degitlab#readme",
"bin": {
"degitlab": "./dist/index.mjs",
"dgl": "./dist/index.mjs"
},
"engines": {
"node": ">=16",
"pnpm": ">=7",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dohooo/degitlab.git"
},
"bugs": "https://github.com/dohooo/degitlab/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"build:watch": "npx nodemon --exec 'pnpm run build' -w src -e 'ts'",
"dev": "unbuild --stub",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@antfu/ni": "^0.16.2",
"@antfu/utils": "^0.5.2",
"@dohooo/eslint-config": "*",
"@types/decompress": "^4.2.4",
"@types/fs-extra": "^9.0.13",
"@types/git-config-path": "^2.0.1",
"@types/node": "^17.0.44",
"@types/parse-git-config": "^3.0.1",
"@types/tar": "^6.1.2",
"bumpp": "^8.0.0",
"eslint": "^8.17.0",
"esno": "^0.16.3",
"nodemon": "^2.0.16",
"pnpm": "^7.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.3",
"unbuild": "^0.7.4",
"vite": "^2.9.12",
"vitest": "^0.15.1"
},
"dependencies": {
"@gitbeaker/node": "^35.7.0",
"@types/inquirer": "^9.0.0",
"decompress": "^4.2.1",
"fs-extra": "^10.1.0",
"git-config-path": "^2.0.0",
"home-or-tmp": "^4.0.0",
"inquirer": "^9.1.0",
"meow": "^10.1.3",
"nodejs-file-downloader": "^4.10.1",
"parse-git-config": "^3.0.0",
"simple-git": "^3.11.0",
"tar": "^6.1.11"
}
}