@pranavraut033/ats-checker 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -85,6 +85,10 @@ npm run dev # Start web UI at http://localhost:3000
|
|
|
85
85
|
|
|
86
86
|
## Documentation
|
|
87
87
|
|
|
88
|
+
**Live Docs** (hosted on GitHub Pages):
|
|
89
|
+
- https://Pranavraut033.github.io/ats-checker/docs/
|
|
90
|
+
|
|
91
|
+
**Local Docs** (in repository):
|
|
88
92
|
- [Configuration Guide](docs/configuration.md)
|
|
89
93
|
- [LLM Integration](docs/llm-integration.md)
|
|
90
94
|
- [Web Interface](docs/ui.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pranavraut033/ats-checker",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Deterministic, configurable ATS (Applicant Tracking System) compatibility checker with no external dependencies. Analyze resumes, generate scores, and get actionable suggestions.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -45,11 +45,12 @@
|
|
|
45
45
|
"applicant-tracking"
|
|
46
46
|
],
|
|
47
47
|
"scripts": {
|
|
48
|
-
"build": "tsup",
|
|
48
|
+
"build": "tsup && npm run build:ui",
|
|
49
|
+
"build:ui": "mkdir -p ui/public/dist && cp dist/index.mjs ui/public/dist/ && cp dist/index.d.ts ui/public/dist/",
|
|
50
|
+
"serve": "npx http-server ui/public -p 3005",
|
|
49
51
|
"test": "vitest run",
|
|
50
52
|
"test:watch": "vitest",
|
|
51
|
-
"type-check": "tsc --noEmit"
|
|
52
|
-
"dev": "tsx ui/server.ts"
|
|
53
|
+
"type-check": "tsc --noEmit"
|
|
53
54
|
},
|
|
54
55
|
"publishConfig": {
|
|
55
56
|
"access": "public"
|