-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.76 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.76 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
101
102
103
104
{
"name": "mongoku",
"version": "2.7.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"
},
"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",
"prepare": "svelte-kit sync || echo ''",
"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"
},
"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.53.5",
"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"
]
},
"packageManager": "pnpm@10.11.0"
}