forked from earthstar-project/earthstar-pub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
{
"name": "earthstar-pub",
"version": "2.0.2",
"description": "Host Earthstar workspaces via HTTP",
"engines": {
"node": "12.x"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/cinnamon-bun/earthstar-pub.git"
},
"main": "./build/pub.js",
"bin": {
"earthstar-pub": "./build/cli.js"
},
"scripts": {
"clean": "rm -rf build/*",
"build": "tsc",
"start": "node build/cli.js",
"build-and-start": "npm run build && npm run start",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run clean && npm run build"
},
"author": "Cinnamon <[email protected]>",
"license": "AGPL-3.0",
"devDependencies": {
"@types/better-sqlite3": "^5.4.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/node": "^14.0.5",
"typescript": "^3.9.3"
},
"dependencies": {
"commander": "^5.1.0",
"cors": "^2.8.5",
"earthstar": "^2.0.2",
"express": "^4.17.1",
"tslib": "^2.0.0"
}
}