@loopsaaage/n8n-nodes-smart-crawler 0.1.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 ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "@loopsaaage/n8n-nodes-smart-crawler",
3
+ "version": "0.1.0",
4
+ "description": "通用智能爬虫n8n节点,使用Axios + Cheerio,支持多跳数据提取",
5
+ "license": "MIT",
6
+ "homepage": "https://github.com/MaskerPRC/n8n-nodes-smart-crawler#readme",
7
+ "keywords": [
8
+ "n8n-community-node-package",
9
+ "crawler",
10
+ "web-scraping",
11
+ "axios",
12
+ "cheerio"
13
+ ],
14
+ "author": {
15
+ "name": "MaskerPRC"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/MaskerPRC/n8n-nodes-smart-crawler.git"
20
+ },
21
+ "scripts": {
22
+ "build": "n8n-node build",
23
+ "build:watch": "tsc --watch",
24
+ "dev": "n8n-node dev",
25
+ "lint": "n8n-node lint",
26
+ "lint:fix": "n8n-node lint --fix",
27
+ "release": "n8n-node release",
28
+ "prepublishOnly": "echo Skipping prerelease",
29
+ "test": "jest",
30
+ "test:watch": "jest --watch"
31
+ },
32
+ "files": [
33
+ "dist"
34
+ ],
35
+ "n8n": {
36
+ "n8nNodesApiVersion": 1,
37
+ "strict": true,
38
+ "nodes": [
39
+ "dist/nodes/SmartCrawler/SmartCrawler.node.js"
40
+ ]
41
+ },
42
+ "devDependencies": {
43
+ "@n8n/node-cli": "*",
44
+ "@types/jest": "^29.5.12",
45
+ "eslint": "9.32.0",
46
+ "jest": "^29.7.0",
47
+ "prettier": "3.6.2",
48
+ "release-it": "^19.0.4",
49
+ "ts-jest": "^29.1.2",
50
+ "typescript": "5.9.2"
51
+ },
52
+ "peerDependencies": {
53
+ "n8n-workflow": "*"
54
+ },
55
+ "dependencies": {
56
+ "axios": "^1.13.4",
57
+ "cheerio": "^1.2.0"
58
+ }
59
+ }