-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 960 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 960 Bytes
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
{
"name": "apis-collection",
"version": "2.0.0",
"engines": {
"node": ">=20"
},
"description": "Community maintained, human, machine and AI readable list of Public APIs 📝",
"type": "module",
"bin": {
"apis": "./src/cli.ts"
},
"scripts": {
"build": "tsx src/cli.ts build",
"validate": "tsx src/cli.ts validate",
"add": "tsx src/cli.ts add",
"check-links": "tsx src/cli.ts check-links",
"check-orphans": "tsx src/cli.ts check-orphans",
"enrich": "tsx src/cli.ts enrich",
"migrate": "tsx src/cli.ts migrate",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"dependencies": {
"chalk": "5.6.2",
"commander": "7.0.0",
"handlebars": "4.7.6",
"inquirer": "13.2.5",
"octokit": "^5.0.5",
"p-limit": "7.3.0",
"slugify": "1.4.6",
"yaml": "2.8.2",
"zod": "4.3.6"
}
}