-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.74 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
{
"name": "@withresumeai/ats-data",
"version": "2.0.0",
"description": "738 large employers (Fortune 500, Global 2000, late-stage private) and the ATS systems they use. Data from the State of ATS 2026 report.",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./data/companies.csv": "./data/companies.csv",
"./package.json": "./package.json"
},
"files": [
"dist",
"data",
"README.md",
"CHANGELOG.md",
"NOTICE.md",
"CITATION.cff",
"LICENSE"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"test": "node --test test/smoke.test.mjs",
"prepublishOnly": "npm run stats:check && npm run build && npm test",
"stats": "node scripts/gen-readme-stats.mjs",
"stats:check": "node scripts/gen-readme-stats.mjs --check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kayvan-Zahiri/state-of-ats-2026.git"
},
"homepage": "https://withresumeai.com/reports/state-of-ats-2026",
"bugs": {
"url": "https://github.com/Kayvan-Zahiri/state-of-ats-2026/issues"
},
"keywords": [
"ats",
"applicant-tracking-system",
"resume",
"hiring",
"fortune-500",
"workday",
"greenhouse",
"lever",
"taleo",
"dataset",
"jobs",
"recruiting"
],
"license": "MIT",
"author": "Kayvan Zahiri <kayvan@withresumeai.com>",
"engines": {
"node": ">=18"
},
"devDependencies": {
"tsup": "^8.0.0",
"typescript": "^5.4.0"
}
}