-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1000 Bytes
/
package.json
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
{
"name": "gmod-wiki-scraper",
"version": "2.0.0-rc.1",
"description": "Extract GLua API documentation from the new Garry's Mod wiki",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=18"
},
"bin": {
"gmod-wiki-scraper": "dist/cli.js"
},
"scripts": {
"start": "tsx src/cli.ts",
"build": "tsc",
"lint": "eslint \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"test": "vitest"
},
"author": "Dominique Mattern <dominique@mattern.dev>",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0",
"cli-progress": "^3.12.0",
"got": "^13.0.0",
"p-limit": "^6.1.0",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/cheerio": "^0.22.35",
"@types/cli-progress": "^3.11.6",
"@types/yargs": "^17.0.33",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"vitest": "^2.1.2"
}
}