@pranavraut033/ats-checker 0.2.0 → 1.0.0
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/package.json +35 -16
package/package.json
CHANGED
|
@@ -1,41 +1,60 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pranavraut033/ats-checker",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Deterministic, configurable ATS compatibility checker with no external dependencies.",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Deterministic, configurable ATS (Applicant Tracking System) compatibility checker with no external dependencies. Analyze resumes, generate scores, and get actionable suggestions.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Pranav Raut",
|
|
8
|
+
"url": "https://github.com/Pranavraut033"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/Pranavraut033/resume-builder"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/Pranavraut033/resume-builder/issues"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/Pranavraut033/resume-builder#readme",
|
|
5
18
|
"main": "dist/index.cjs",
|
|
6
19
|
"module": "dist/index.mjs",
|
|
7
20
|
"types": "dist/index.d.ts",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
24
|
+
"import": "./dist/index.mjs",
|
|
25
|
+
"require": "./dist/index.cjs",
|
|
26
|
+
"default": "./dist/index.mjs"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
8
29
|
"sideEffects": false,
|
|
9
30
|
"files": [
|
|
10
31
|
"dist"
|
|
11
32
|
],
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"test": "vitest run",
|
|
15
|
-
"test:watch": "vitest",
|
|
16
|
-
"type-check": "tsc --noEmit"
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=18"
|
|
17
35
|
},
|
|
18
36
|
"keywords": [
|
|
19
37
|
"ats",
|
|
20
38
|
"resume",
|
|
39
|
+
"job-description",
|
|
21
40
|
"scoring",
|
|
41
|
+
"compatibility",
|
|
22
42
|
"hiring",
|
|
23
43
|
"checker",
|
|
24
|
-
"analysis"
|
|
44
|
+
"analysis",
|
|
45
|
+
"applicant-tracking"
|
|
25
46
|
],
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
47
|
+
"scripts": {
|
|
48
|
+
"build": "tsup",
|
|
49
|
+
"test": "vitest run",
|
|
50
|
+
"test:watch": "vitest",
|
|
51
|
+
"type-check": "tsc --noEmit"
|
|
29
52
|
},
|
|
30
|
-
"author": "",
|
|
31
|
-
"license": "MIT",
|
|
32
53
|
"publishConfig": {
|
|
33
54
|
"access": "public"
|
|
34
55
|
},
|
|
35
|
-
"engines": {
|
|
36
|
-
"node": ">=18"
|
|
37
|
-
},
|
|
38
56
|
"devDependencies": {
|
|
57
|
+
"@types/node": "^25.0.3",
|
|
39
58
|
"@vitest/ui": "^4.0.16",
|
|
40
59
|
"tsup": "^8.3.0",
|
|
41
60
|
"typescript": "^5.6.3",
|