-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1 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
{
"name": "@breck/wws",
"version": "0.22.0",
"description": "The World Wide Scroll",
"main": "wws.js",
"engines": {
"node": ">=16.0"
},
"scripts": {
"hosts": "echo '127.0.0.1 scroll' | sudo tee -a /etc/hosts",
"test": "node wws.test.js",
"build": "scroll build",
"format": "scroll format",
"open": "open index.html",
"up": "npm install scroll-cli@latest; npm install scrollsdk@latest"
},
"bin": {
"wws": "./wws.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/breck7/wws.git"
},
"author": "Breck Yunits",
"prettier": {
"parser": "babel",
"useTabs": false,
"tabWidth": 2,
"semi": false,
"printWidth": 240,
"trailingComma": "none",
"arrowParens": "avoid",
"quoteProps": "as-needed"
},
"homepage": "https://wws.scroll.pub",
"dependencies": {
"express": "^4.21.1",
"minimist": "^1.2.8",
"scroll-cli": "^151.0.0",
"scrollsdk": "^93.0.0"
},
"devDependencies": {
"tap": "^18.7.2"
}
}