-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.7 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
{
"name": "domain-hunter",
"version": "2.0.0",
"private": true,
"type": "module",
"description": "Free, open-source, browser-only domain availability checker. No servers, no API keys, no tracking.",
"license": "MIT",
"engines": {
"node": ">=20"
},
"bin": {
"domain-hunter": "dist-cli/domain-hunter.mjs"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit && svelte-check --tsconfig ./tsconfig.json",
"check:svelte": "svelte-check --tsconfig ./tsconfig.json",
"test": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"lint": "eslint . && node scripts/lint-hardcode.mjs && node scripts/check-i18n.mjs",
"prepare": "husky",
"smoke": "node scripts/smoke.mjs",
"build:worker": "node scripts/build-worker.mjs",
"build:cli": "node scripts/build-cli.mjs",
"cli": "npm run build:cli && node dist-cli/domain-hunter.mjs",
"mcp": "npm run build:cli && node dist-cli/mcp-server.mjs"
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@modelcontextprotocol/sdk": "^1.30.0",
"@playwright/test": "^1.62.1",
"@sveltejs/vite-plugin-svelte": "^6.0.0",
"@types/node": "^24.0.0",
"esbuild": "^0.28.0",
"eslint": "^9.0.0",
"eslint-plugin-svelte": "^2.0.0",
"husky": "^9.0.0",
"playwright": "^1.62.1",
"svelte": "^5.0.0",
"svelte-check": "^4.7.6",
"svelte-eslint-parser": "^0.41.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0",
"vite": "^7.0.0",
"vite-plugin-singlefile": "^2.0.0",
"vitest": "^3.0.0",
"zod": "^4.4.3"
}
}