-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.13 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.13 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
{
"name": "crawl-server",
"description": "Efficient SEO-focused server for Wasm-generated pages",
"version": "1.8.2",
"author": "Mikhail Isaev <me@mihaelisaev.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/swiftstream/crawl-server.git"
},
"homepage": "https://swift.stream",
"bugs": {
"url": "https://github.com/swiftstream/crawl-server/issues"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"seo",
"crawler",
"webassembly",
"wasm",
"renderer",
"server",
"swift",
"swift-wasm",
"swifweb",
"swiftstream"
],
"main": "main.js",
"bin": {
"crawlserver": "./cli.js"
},
"type": "module",
"exports": {
".": "./index.js",
"./cloudFunction": "./cloudFunction.js",
"./cloudFunction/firebase": "./firebase.js",
"./server": "./server.js"
},
"scripts": {
"start": "node main.js"
},
"dependencies": {
"@wasmer/wasi": "0.12.0",
"@wasmer/wasmfs": "0.12.0",
"commander": "^12.1.0",
"fastify": "^5.4.0",
"javascript-kit-swift": "0.20.0",
"jsdom": "25.0.1",
"mime": "^4.0.6"
}
}