-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1016 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1016 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
34
35
36
37
38
39
40
41
{
"name": "codimd-cli",
"version": "0.2.3",
"description": "Command-line interface for self-hosted CodiMD instances (cookie session auth)",
"type": "module",
"bin": {
"codimd-cli": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "bun run src/cli.ts",
"build": "bun build ./src/cli.ts --outdir dist --target bun",
"compile": "bun build ./src/cli.ts --compile --outfile dist/codimd-cli",
"compile:all": "bun run scripts/compile-all.ts",
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit"
},
"keywords": [
"codimd",
"cli",
"markdown"
],
"license": "MIT",
"dependencies": {
"@cliffy/command": "npm:@jsr/cliffy__command",
"@cliffy/prompt": "npm:@jsr/cliffy__prompt",
"@cliffy/table": "npm:@jsr/cliffy__table",
"@opentui/core": "^0.1.0",
"tough-cookie": "^5.1.2"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.8.3"
},
"engines": {
"bun": ">=1.2.0"
}
}