-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.25 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
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
96
97
98
99
100
{
"name": "@ssntpl/otper-cli",
"version": "0.1.8",
"description": "Command-line interface for Otper boards (https://otper.com).",
"author": "SSNTPL <info@ssntpl.com>",
"license": "MIT",
"homepage": "https://github.com/ssntpl/otper-cli",
"repository": {
"type": "git",
"url": "git+https://github.com/ssntpl/otper-cli.git"
},
"bugs": {
"url": "https://github.com/ssntpl/otper-cli/issues"
},
"keywords": [
"otper",
"cli",
"kanban",
"project-management",
"ssntpl"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"otper": "./bin/run.js"
},
"files": [
"bin/run.js",
"dist",
"oclif.manifest.json"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "shx rm -rf dist && tsc",
"lint": "tsc --noEmit",
"prepack": "npm run build && oclif manifest",
"postpack": "shx rm -f oclif.manifest.json",
"dev": "tsx ./bin/dev.ts"
},
"dependencies": {
"@oclif/core": "^4.0.30",
"@oclif/plugin-autocomplete": "^3.2.10",
"@oclif/plugin-help": "^6.2.16",
"@oclif/plugin-not-found": "^3.2.27",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/node": "^20.16.10",
"@types/prompts": "^2.4.9",
"oclif": "^4.15.16",
"shx": "^0.3.4",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"oclif": {
"bin": "otper",
"dirname": "otper",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-autocomplete"
],
"topicSeparator": ":",
"topics": {
"auth": {
"description": "Manage authentication credentials"
},
"board": {
"description": "Board commands"
},
"list": {
"description": "List commands"
},
"card": {
"description": "Card commands"
},
"label": {
"description": "Label commands"
},
"comment": {
"description": "Comment commands"
},
"team": {
"description": "Team commands"
},
"watchlist": {
"description": "Watchlist commands"
}
}
}
}