-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.76 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
{
"name": "scrollhub",
"version": "0.90.0",
"description": "ScrollHub turns any server into a place where people can instantly launch unlimited new (ephemeral) website powered by Scroll.",
"main": "server.js",
"author": "Breck Yunits",
"dependencies": {
"@anthropic-ai/sdk": "^0.33.1",
"acme-client": "^5.4.0",
"cheerio": "^1.0.0-rc.12",
"compression": "^1.7.4",
"express": "^4.19.2",
"express-fileupload": "^1.5.1",
"git-http-backend": "^1.1.2",
"ky": "^1.4.0",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"openai": "^4.77.0",
"prettier": "^3.3.3",
"rss-parser": "^3.13.0",
"scroll-cli": "^178.2.2",
"scrollsdk": "^107.0.1"
},
"bin": {
"hub": "./cli.js"
},
"scripts": {
"beta": "npm install ~/scroll; npm install ~/sdk; cp ~/tryscroll/dist/constants.js public/ide/parsers.js; cp ~/tryscroll/dist/libs.js public/ide/libs.js",
"stage": "git push github; git push gitlab; ssh root@beta.scroll.pub 'cd ScrollHub && npm run upgrade'",
"build": "scroll build",
"test": " scroll test; node ScrollHub.test.js",
"ssh": "ssh root@45.79.252.51",
"up": "npm install scroll-cli@latest; cp ~/tryscroll/dist/constants.js public/ide/parsers.js; cp ~/tryscroll/dist/libs.js public/ide/libs.js",
"deploy": "git push github; git push gitlab; ssh root@hub.scroll.pub 'cd ScrollHub && npm run upgrade'",
"upgrade": "git pull && npm install . && npm install -g scroll-cli prettier && npm install -g . && pm2 restart server && npm run build"
},
"prettier": {
"parser": "babel",
"useTabs": false,
"tabWidth": 2,
"semi": false,
"printWidth": 240,
"trailingComma": "none",
"arrowParens": "avoid",
"quoteProps": "as-needed"
},
"devDependencies": {
"tap": "^18.7.2"
}
}