UNPKG

mongoku

Version:

[![CI](https://github.com/huggingface/Mongoku/actions/workflows/ci.yml/badge.svg)](https://github.com/huggingface/Mongoku/actions/workflows/ci.yml)

105 lines 2.97 kB
{ "name": "mongoku", "version": "2.9.2", "license": "MIT", "author": "Anthony Moi <m.anthony.moi@gmail.com>", "type": "module", "keywords": [ "MongoDB", "administration", "explore", "query" ], "repository": { "type": "git", "url": "https://github.com/huggingface/Mongoku.git" }, "dependencies": { "@aws-sdk/credential-providers": "^3.592.0", "@codemirror/commands": "^6.3.3", "@codemirror/lang-javascript": "^6.2.1", "@codemirror/state": "^6.4.0", "@codemirror/theme-one-dark": "^6.1.2", "@codemirror/view": "^6.23.0", "aws4": "^1.13.2", "chalk": "^2.4.2", "codemirror": "^6.0.1", "commander": "^8.3.0", "esprima": "^4.0.1", "mongodb": "^6.20.0", "zod": "^4.1.12" }, "bin": { "mongoku": "./dist/cli.js" }, "files": [ "/dist", "/build", "/ecosystem.config.js", "/cli.ts", "/src", "/Dockerfile", "/svelte.config.js", "/tsconfig.json", "/tsconfig.cli.json", "/vite.config.ts" ], "devDependencies": { "@eslint/compat": "^1.4.0", "@eslint/js": "^9.36.0", "@fontsource/cuprum": "^5.2.8", "@fontsource/rajdhani": "^5.2.7", "@sveltejs/adapter-node": "^5.3.3", "@sveltejs/kit": "^2.49.5", "@sveltejs/vite-plugin-svelte": "^6.2.0", "@tailwindcss/vite": "^4.1.14", "@types/esprima": "^4.0.6", "@types/estree": "^1.0.8", "@types/node": "^22", "eslint": "^9.36.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-svelte": "^3.12.4", "globals": "^16.4.0", "prettier": "^3.6.2", "prettier-plugin-svelte": "^3.4.0", "simple-git-hooks": "^2.13.1", "svelte": "^5.55.7", "svelte-check": "^4.3.2", "tailwindcss": "^4.1.14", "typescript": "^5.9.2", "typescript-eslint": "^8.44.1", "vite": "^7.1.11", "vitest": "^3.2.4" }, "simple-git-hooks": { "pre-commit": "npx lint-staged" }, "lint-staged": { "*.{js,ts,svelte}": [ "eslint --fix", "prettier --write" ], "*.yml": [ "prettier --write" ] }, "scripts": { "dev": "vite dev --port 3100", "build": "vite build && tsc cli.ts --outDir dist --module esnext --target es2022 --moduleResolution bundler --esModuleInterop", "postbuild": "node --experimental-strip-types scripts/postbuild.ts", "build:app": "vite build", "build:cli": "tsc cli.ts --outDir dist --module esnext --target es2022 --moduleResolution bundler --esModuleInterop", "preview": "vite preview", "start": "node build", "test": "vitest run", "test:watch": "vitest", "test:ui": "vitest --ui", "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", "format": "prettier --write .", "format:single": "prettier --write", "format:check": "prettier --check .", "lint": "eslint .", "lint:fix": "eslint . --fix" } }