-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.28 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
71
72
73
74
75
76
77
78
79
80
{
"name": "crawlx",
"version": "2.0.1",
"main": "dist/index.js",
"license": "MIT",
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"description": "Advanced web crawler and scraper with built-in parsing, following, rate limiting, and plugin system",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"dev": "tsx examples/basic-usage.ts",
"test": "tsx scripts/run-tests.ts",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",
"test:unit": "vitest run src/**/*.test.ts",
"test:integration": "vitest run tests/integration/**/*.test.ts",
"test:performance": "vitest run tests/performance/**/*.test.ts",
"test:e2e": "vitest run tests/e2e/**/*.test.ts",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,json,md}\"",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"undici": "^5.28.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitest/coverage-v8": "^1.1.0",
"@vitest/ui": "^1.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"tsup": "^8.0.1",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"vitepress": "^1.0.0-rc.36",
"vitest": "^1.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/wind2sing/crawlx.git"
},
"homepage": "https://github.com/wind2sing/crawlx",
"bugs": {
"url": "https://github.com/wind2sing/crawlx/issues"
},
"keywords": [
"web-crawler",
"scraper",
"scraping",
"spider",
"parser",
"cheerio",
"typescript",
"plugin-system",
"concurrent",
"lightweight"
]
}