-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.91 KB
/
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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "webscraper",
"version": "1.2.4",
"description": "",
"private": true,
"main": "dist/main.js",
"type": "module",
"scripts": {
"start": "npm run start:dev",
"start:prod": "node dist/main.js",
"start:dev": "ts-node --esm src/main.ts",
"debug": "ts-node-esm -T debug/format.ts",
"build": "rm -rf dist && tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yiwen-ai/webscraper.git"
},
"author": "",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/yiwen-ai/webscraper/issues"
},
"homepage": "https://github.com/yiwen-ai/webscraper#readme",
"dependencies": {
"@crawlee/core": "^3.6.2",
"@koa/router": "^12.0.1",
"@tiptap-pro/extension-details": "2.5.0",
"@tiptap-pro/extension-details-content": "2.5.0",
"@tiptap-pro/extension-details-summary": "2.5.0",
"@tiptap-pro/extension-emoji": "2.5.0",
"@tiptap-pro/extension-mathematics": "2.5.0",
"@tiptap-pro/extension-unique-id": "2.5.0",
"@tiptap/core": "2.1.11",
"@tiptap/extension-color": "2.1.11",
"@tiptap/extension-image": "2.1.11",
"@tiptap/extension-link": "2.1.11",
"@tiptap/extension-mention": "2.1.11",
"@tiptap/extension-subscript": "2.1.11",
"@tiptap/extension-superscript": "2.1.11",
"@tiptap/extension-table": "2.1.11",
"@tiptap/extension-table-cell": "2.1.11",
"@tiptap/extension-table-header": "2.1.11",
"@tiptap/extension-table-row": "2.1.11",
"@tiptap/extension-task-item": "2.1.11",
"@tiptap/extension-task-list": "2.1.11",
"@tiptap/extension-text-align": "2.1.11",
"@tiptap/extension-text-style": "2.1.11",
"@tiptap/extension-typography": "2.1.11",
"@tiptap/extension-underline": "2.1.11",
"@tiptap/extension-youtube": "2.1.11",
"@tiptap/html": "2.1.11",
"@tiptap/pm": "2.1.11",
"@tiptap/starter-kit": "^2.1.13",
"cassandra-driver": "^4.7.2",
"cborg": "^2.0.5",
"cheerio": "1.0.0-rc.12",
"config": "^3.3.9",
"content-type": "^1.0.5",
"crawlee": "^3.6.2",
"http-errors": "^2.0.0",
"koa": "^2.14.2",
"long": "^5.2.3",
"marked": "^7.0.5",
"nanoid": "^4.0.2",
"pdfjs-dist": "^3.11.174",
"playwright": "^1.40.1",
"prosemirror-model": "^1.19.3",
"raw-body": "^2.5.2",
"uuid": "^9.0.1",
"xid-ts": "^1.0.1",
"zeed-dom": "^0.10.9"
},
"devDependencies": {
"@types/config": "^3.3.3",
"@types/content-type": "^1.1.8",
"@types/http-errors": "^2.0.4",
"@types/katex": "^0.16.7",
"@types/koa": "^2.13.12",
"@types/koa__router": "^12.0.4",
"@types/node": "^18.19.0",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"node-fetch": "^3.3.2",
"tsup": "^7.2.0",
"typescript": "^5.3.2"
}
}