-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.24 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.24 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
{
"name": "slopweb",
"version": "1.0.3",
"description": "A new web where AI generates every page.",
"type": "module",
"packageManager": "pnpm@10.33.0",
"bin": {
"slopweb": "bin/slopweb.js"
},
"files": [
"app/lib",
"app/public",
"app/schema",
"app/package.json",
"app/README.md",
"app/server.js",
"assets",
"bin",
"scripts",
"README.md"
],
"scripts": {
"start": "node ./bin/slopweb.js",
"dev": "node ./bin/slopweb.js",
"check": "node scripts/check.mjs",
"test": "node scripts/test.mjs",
"bench:stream": "node scripts/stream-bench.mjs",
"pack:dry": "npm pack --dry-run",
"prepublishOnly": "npm run check && npm test"
},
"keywords": [
"ai",
"codex",
"generated-pages",
"generated-websites",
"self-contained-html"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jasperdevs/slopweb.git"
},
"bugs": {
"url": "https://github.com/jasperdevs/slopweb/issues"
},
"homepage": "https://github.com/jasperdevs/slopweb#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.17"
},
"dependencies": {
"@ai-sdk/openai-compatible": "2.0.41",
"ai": "6.0.168"
}
}