quicklify 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +26 -0
- package/README.md +1 -0
- package/SECURITY.md +39 -0
- package/package.json +14 -1
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"Bash(npm install:*)",
|
|
5
|
+
"Bash(npx tsc:*)",
|
|
6
|
+
"Bash(git init:*)",
|
|
7
|
+
"Bash(git add:*)",
|
|
8
|
+
"Bash(npm run build:*)",
|
|
9
|
+
"Bash(npm run dev:*)",
|
|
10
|
+
"Bash(npx jest:*)",
|
|
11
|
+
"Bash(gh repo view:*)",
|
|
12
|
+
"Bash(git branch:*)",
|
|
13
|
+
"Bash(git remote add:*)",
|
|
14
|
+
"Bash(git fetch:*)",
|
|
15
|
+
"Bash(git pull:*)",
|
|
16
|
+
"Bash(git stash:*)",
|
|
17
|
+
"Bash(git reset:*)",
|
|
18
|
+
"Bash(git checkout:*)",
|
|
19
|
+
"Bash(git rm:*)",
|
|
20
|
+
"Bash(git commit -m \"$\\(cat <<''EOF''\nInitial commit: Quicklify v0.1.0\n\n- CLI tool for automated Coolify deployment\n- Hetzner Cloud provider support\n- 79 tests with 100% coverage\n- Multi-platform CI/CD \\(Ubuntu, macOS, Windows\\)\n- TypeScript + Commander.js + Inquirer.js\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>\nEOF\n\\)\")",
|
|
21
|
+
"Bash(git push:*)",
|
|
22
|
+
"Bash(git remote set-url:*)",
|
|
23
|
+
"Bash(git commit:*)"
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
}
|
package/README.md
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|

|
|
7
7
|

|
|
8
8
|

|
|
9
|
+
[](https://socket.dev/npm/package/quicklify)
|
|
9
10
|
|
|
10
11
|
> Deploy Coolify to any cloud VPS in 4 minutes
|
|
11
12
|
|
package/SECURITY.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Security Policy
|
|
2
|
+
|
|
3
|
+
## Supported Versions
|
|
4
|
+
|
|
5
|
+
| Version | Supported |
|
|
6
|
+
| ------- | ------------------ |
|
|
7
|
+
| 0.1.x | :white_check_mark: |
|
|
8
|
+
|
|
9
|
+
## Reporting a Vulnerability
|
|
10
|
+
|
|
11
|
+
If you discover a security vulnerability in Quicklify:
|
|
12
|
+
|
|
13
|
+
1. **DO NOT** open a public issue
|
|
14
|
+
2. Email: hello@omrfc.dev
|
|
15
|
+
3. Include:
|
|
16
|
+
- Description of the vulnerability
|
|
17
|
+
- Steps to reproduce
|
|
18
|
+
- Potential impact
|
|
19
|
+
- Suggested fix (if any)
|
|
20
|
+
|
|
21
|
+
Response time: Within 48 hours
|
|
22
|
+
|
|
23
|
+
## Security Measures
|
|
24
|
+
|
|
25
|
+
- All dependencies scanned with Socket.dev
|
|
26
|
+
- No credentials stored in code
|
|
27
|
+
- API tokens handled via environment variables
|
|
28
|
+
- SSH keys created with secure permissions (600)
|
|
29
|
+
- Input validation on all user inputs
|
|
30
|
+
- Automated security checks via GitHub Actions
|
|
31
|
+
|
|
32
|
+
## Third-party Dependencies
|
|
33
|
+
|
|
34
|
+
Quicklify uses audited dependencies:
|
|
35
|
+
- Hetzner Cloud API (official SDK)
|
|
36
|
+
- All dependencies regularly updated
|
|
37
|
+
- Socket.dev security monitoring enabled
|
|
38
|
+
|
|
39
|
+
Security scan: https://socket.dev/npm/package/quicklify
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quicklify",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Automate Coolify deployment on cloud providers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -22,6 +22,19 @@
|
|
|
22
22
|
"cli"
|
|
23
23
|
],
|
|
24
24
|
"license": "MIT",
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "https://github.com/omrfc/quicklify.git"
|
|
28
|
+
},
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/omrfc/quicklify/issues"
|
|
31
|
+
},
|
|
32
|
+
"homepage": "https://quicklify.omrfc.dev",
|
|
33
|
+
"author": {
|
|
34
|
+
"name": "Ömer",
|
|
35
|
+
"email": "hello@omrfc.dev",
|
|
36
|
+
"url": "https://omrfc.dev"
|
|
37
|
+
},
|
|
25
38
|
"dependencies": {
|
|
26
39
|
"axios": "^1.7.9",
|
|
27
40
|
"chalk": "^5.4.1",
|