-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.05 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.05 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
{
"name": "kup-cli",
"version": "0.1.4",
"description": "A CLI tool to sync local Markdown files to GitHub issues.",
"type": "module",
"bin": {
"kup": "bin/cli.js"
},
"scripts": {
"debug": "export KUP_DEBUG_MODE=1",
"postpublish": "npx npm-mirror-sync",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cssmagic/kup.git"
},
"keywords": [
"cli",
"markdown",
"github",
"issue"
],
"author": "cssmagic <cssmagic.cn@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"find-up": "^8.0.0",
"gh-got": "^12.0.0",
"inquirer": "^13.4.1",
"yaml": "^2.8.3",
"yargs": "^18.0.0"
},
"devDependencies": {
"execa": "^9.6.1",
"https-proxy-agent": "^9.0.0",
"nock": "^14.0.12",
"vitest": "^4.1.4"
},
"files": [
"*.js",
"lib/",
"bin/"
],
"packageManager": "pnpm@10.33.0",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}