-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 841 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 841 Bytes
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
{
"name": "ghostpipe",
"version": "0.1.5",
"description": "interfaces for your codebase",
"main": "index.js",
"repository": "https://github.com/inputlogic/ghostpipe",
"bin": {
"ghostpipe": "./dist/bin/ghostpipe.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "node webdemo/server.js"
},
"keywords": [
"cli"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@roamhq/wrtc": "^0.9.0",
"chalk": "^4.1.2",
"chokidar": "^4.0.3",
"commander": "^14.0.0",
"minimatch": "^10.0.3",
"y-webrtc": "^10.3.0",
"yjs": "^13.6.27"
}
}