aboutsummaryrefslogtreecommitdiffstats
path: root/apps/cli/package.json
blob: 0aa8230ea727b3b3bbbeec0b5fec005dd44ed210 (plain) (blame)
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
{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "@karakeep/cli",
  "version": "0.25.0",
  "description": "Command Line Interface (CLI) for Karakeep",
  "license": "GNU Affero General Public License version 3",
  "keywords": [
    "hoarder",
    "karakeep",
    "cli"
  ],
  "exports": "./dist/index.mjs",
  "bin": {
    "karakeep": "dist/index.mjs"
  },
  "devDependencies": {
    "@commander-js/extra-typings": "^12.0.1",
    "@karakeep/prettier-config": "workspace:^0.1.0",
    "@karakeep/shared": "workspace:^0.1.0",
    "@karakeep/trpc": "workspace:^0.1.0",
    "@karakeep/tsconfig": "workspace:^0.1.0",
    "@trpc/client": "11.0.0",
    "@trpc/server": "11.0.0",
    "@tsconfig/node22": "^22.0.0",
    "chalk": "^5.3.0",
    "commander": "^12.0.0",
    "superjson": "^2.2.1",
    "table": "^6.8.2",
    "tsx": "^4.7.1",
    "vite": "^5.1.0"
  },
  "scripts": {
    "build": "vite build",
    "run": "tsx src/index.ts",
    "lint": "oxlint .",
    "lint:fix": "oxlint . --fix",
    "format": "prettier . --ignore-path ../../.prettierignore",
    "format:fix": "prettier . --write --ignore-path ../../.prettierignore",
    "typecheck": "tsc --noEmit"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/karakeep-app/karakeep.git",
    "directory": "apps/cli"
  },
  "prettier": "@karakeep/prettier-config"
}