@supercode-sh/claude-install-mac 0.1.1
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/README.md +26 -0
- package/bin/noop.mjs +3 -0
- package/package.json +41 -0
package/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Supercode for Claude Desktop on macOS
|
|
2
|
+
|
|
3
|
+
This is the official macOS package for Supercode for Claude Desktop.
|
|
4
|
+
|
|
5
|
+
The macOS installer is not available yet. The current release is a safe no-op: running it exits successfully without changing Claude Desktop or your system.
|
|
6
|
+
|
|
7
|
+
## Requirements
|
|
8
|
+
|
|
9
|
+
- Node.js 18 or newer
|
|
10
|
+
|
|
11
|
+
## Run
|
|
12
|
+
|
|
13
|
+
```sh
|
|
14
|
+
npx -y @supercode-sh/claude-install-mac@latest
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
The command currently prints an availability notice and exits without making changes.
|
|
18
|
+
|
|
19
|
+
## Links
|
|
20
|
+
|
|
21
|
+
- [Supercode](https://supercode.sh/en)
|
|
22
|
+
- [Documentation](https://supercode.sh/en/how-it-works)
|
|
23
|
+
- [Support](https://supercode.sh/en/help)
|
|
24
|
+
- [Windows package](https://www.npmjs.com/package/@supercode-sh/claude-install-win)
|
|
25
|
+
|
|
26
|
+
Anthropic and Claude are trademarks of Anthropic PBC. Supercode is an independent product and is not affiliated with, endorsed by, or sponsored by Anthropic.
|
package/bin/noop.mjs
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@supercode-sh/claude-install-mac",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Installer for the Supercode Claude Desktop integration on macOS.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"claude-install-mac": "bin/noop.mjs"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"bin/noop.mjs",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=18"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "node --check bin/noop.mjs",
|
|
18
|
+
"check:build": "node --check bin/noop.mjs",
|
|
19
|
+
"verify:dist": "node --check bin/noop.mjs",
|
|
20
|
+
"prepack": "npm --prefix .. run check && npm run verify:dist"
|
|
21
|
+
},
|
|
22
|
+
"publishConfig": {
|
|
23
|
+
"access": "public",
|
|
24
|
+
"registry": "https://registry.npmjs.org/"
|
|
25
|
+
},
|
|
26
|
+
"author": "Supercode",
|
|
27
|
+
"homepage": "https://supercode.sh/en",
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://supercode.sh/en/help"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"anthropic",
|
|
33
|
+
"claude",
|
|
34
|
+
"claude-code",
|
|
35
|
+
"desktop",
|
|
36
|
+
"installer",
|
|
37
|
+
"macos",
|
|
38
|
+
"supercode"
|
|
39
|
+
],
|
|
40
|
+
"license": "UNLICENSED"
|
|
41
|
+
}
|