-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.01 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
46
47
48
{
"name": "replswitcher",
"version": "1.0.1",
"description": "Move a Replit project from one Repl to another from your terminal!",
"homepage": "https://github.com/rayhanadev/replswitcher",
"main": "src/index.js",
"scripts": {
"test": "node src/index.js",
"build": "pkg --compress GZip ."
},
"bin": {
"replswitcher": "./src/index.js"
},
"files": [
"src"
],
"keywords": [
"replit",
"repl",
"cli",
"cli-tool"
],
"author": "Ray Arayilakath <rayhanadev@protonmail.com> (https://rayhanadev.vercel.app)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rayhanadev/replswitcher.git"
},
"dependencies": {
"chalk": "^4.1.2",
"conf": "^10.1.2",
"crosis4furrets": "^0.0.1-beta.7",
"gitignore-parser": "^0.0.2",
"inquirer": "^8.2.4",
"lightfetch-node": "^1.1.1",
"ora": "^5.4.1",
"replit-login": "^1.0.4"
},
"pkg": {
"scripts": "src/**/*.js",
"targets": [
"node16-linux-x64",
"node16-macos-x64",
"node16-win-x64"
],
"outputPath": "dist"
}
}