079project 2.0.0 → 4.0.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/crawler/agent.cjs +97 -0
- package/crawler/index.cjs +515 -0
- package/crawler/storage.cjs +163 -0
- package/forwarder.js +106 -37
- package/groupmanager.cjs +2 -1
- package/main_Serve.cjs +1281 -270
- package/main_Study.cjs +1731 -375
- package/package.json +6 -1
- package/robots/seeds.txt +2 -0
- package/schedule.cjs +745 -0
- package/todo-list.txt +0 -86
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "079project",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "a GNN-GA BASED ai that might pass the turing test,which use little resources.its startpoint initialize it and you can start it as ```node mainStarter.cjs```",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -11,6 +11,10 @@
|
|
|
11
11
|
"turing",
|
|
12
12
|
"test"
|
|
13
13
|
],
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://gitee.com/mumu2009/079-project.git"
|
|
17
|
+
},
|
|
14
18
|
"license": "LGPL-3.0",
|
|
15
19
|
"author": "mumu2009",
|
|
16
20
|
"type": "commonjs",
|
|
@@ -39,6 +43,7 @@
|
|
|
39
43
|
"lmdb": "^3.4.3",
|
|
40
44
|
"natural": "^8.1.0",
|
|
41
45
|
"protobufjs": "^7.5.4",
|
|
46
|
+
"puppeteer": "^24.26.1",
|
|
42
47
|
"redis": "^5.8.3",
|
|
43
48
|
"synaptic": "^1.1.4",
|
|
44
49
|
"tensorflowjs": "^0.6.8",
|
package/robots/seeds.txt
ADDED