-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
49 lines (49 loc) · 1.57 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
49
{
"name": "appwrite-cli",
"homepage": "https://appwrite.io/support",
"description": "Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API",
"version": "6.1.0",
"license": "BSD-3-Clause",
"main": "index.js",
"bin": {
"appwrite": "index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/appwrite/sdk-for-cli"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"linux-x64": "pkg -t node18-linux-x64 -o build/appwrite-cli-linux-x64 package.json",
"linux-arm64": "pkg -t node18-linux-arm64 -o build/appwrite-cli-linux-arm64 package.json",
"mac-x64": "pkg -t node18-macos-x64 -o build/appwrite-cli-darwin-x64 package.json",
"mac-arm64": "pkg -t node18-macos-arm64 -o build/appwrite-cli-darwin-arm64 package.json",
"windows-x64": "pkg -t node18-win-x64 -o build/appwrite-cli-win-x64.exe package.json",
"windows-arm64": "pkg -t node18-win-arm64 -o build/appwrite-cli-win-arm64.exe package.json"
},
"dependencies": {
"undici": "^5.28.2",
"chalk": "4.1.2",
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.2",
"commander": "^9.2.0",
"form-data": "^4.0.0",
"json-bigint": "^1.0.0",
"inquirer": "^8.2.4",
"inquirer-search-list": "^1.2.6",
"tar": "^6.1.11",
"ignore": "^5.2.0",
"chokidar": "^3.6.0",
"tail": "^2.2.6",
"dotenv": "^16.4.5"
},
"devDependencies": {
"pkg": "5.8.1"
},
"pkg": {
"scripts": [
"index.js",
"lib/**/*.js"
]
}
}