-
-
Notifications
You must be signed in to change notification settings - Fork 340
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.58 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 3.58 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
{
"name": "justhireme",
"private": true,
"version": "1.2.0",
"description": "Local-first AI job intelligence workbench for scraping, ranking, and tailoring applications.",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/vasu-devs/JustHireMe.git"
},
"bugs": {
"url": "https://github.com/vasu-devs/JustHireMe/issues"
},
"homepage": "https://github.com/vasu-devs/JustHireMe#readme",
"type": "module",
"scripts": {
"dev": "vite",
"setup:local": "node scripts/setup-local-runtime.mjs",
"dev:local": "node scripts/setup-local-runtime.mjs && npm run tauri dev",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:behavioral": "vitest run src/features/behavioralRender.test.tsx",
"test:coverage": "vitest run --coverage --exclude src/features/behavioralRender.test.tsx",
"build": "node scripts/build-frontend.mjs",
"build:sidecar": "node scripts/build-sidecar.mjs",
"build:runtime-pack": "node scripts/package-runtime-pack.mjs",
"build:vector-runtime": "node scripts/package-vector-runtime.mjs",
"build:all": "node scripts/run-parallel.mjs build:all",
"release:verify-updater": "node scripts/verify-updater-release.mjs",
"release:preflight": "npm run check:all && npm run release:smoke",
"version:bump": "node scripts/version.mjs bump",
"version:check": "node scripts/version.mjs check",
"check": "npm run check:all",
"check:all": "node scripts/run-parallel.mjs check:all",
"preview": "vite preview",
"tauri": "tauri",
"smoke:sidecar": "node scripts/smoke-sidecar.mjs",
"smoke:windows-update": "node scripts/smoke-windows-update.mjs",
"smoke:live-sources": "node scripts/smoke-live-sources.mjs",
"smoke:llm-cli": "node scripts/smoke-llm-cli.mjs",
"release:smoke": "node scripts/run-parallel.mjs release:smoke && cd src-tauri && cargo build --release && cd .. && npm run smoke:sidecar",
"release": "npm run release:windows",
"release:windows": "npm run version:check && npm run build && npm run build:sidecar && npm run build:runtime-pack && npm run package:windows",
"release:linux": "npm run version:check && npm run build && npm run build:sidecar && npm run build:runtime-pack && npm run package:linux",
"release:macos": "npm run version:check && npm run build && npm run build:sidecar && npm run build:runtime-pack && npm run package:macos",
"package:fast": "npm run release:smoke",
"package:windows": "tauri build --bundles nsis",
"package:windows:all": "tauri build --bundles nsis msi",
"package:windows:msi": "tauri build --bundles msi",
"package:linux": "tauri build --bundles deb appimage",
"package:macos": "tauri build --bundles app,dmg"
},
"dependencies": {
"@tailwindcss/vite": "^4.3.0",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.5",
"@tauri-apps/plugin-updater": "^2.10.1",
"d3-force": "^3.0.0",
"framer-motion": "^12.40.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tailwindcss": "^4.3.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tauri-apps/cli": "^2.11.1",
"@types/d3-force": "^3.0.10",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.7",
"eslint": "^10.5.0",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4",
"vite": "^8.0.13",
"vitest": "^4.1.7"
}
}