openplanet-lsp-darwin-arm64 0.2.0
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 +9 -0
- package/bin/.gitkeep +0 -0
- package/package.json +29 -0
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# openplanet-lsp-darwin-arm64
|
|
2
|
+
|
|
3
|
+
Platform-specific native binary for [`openplanet-lsp`](https://www.npmjs.com/package/openplanet-lsp).
|
|
4
|
+
|
|
5
|
+
- OS: darwin
|
|
6
|
+
- CPU: arm64
|
|
7
|
+
- Binary: `bin/openplanet-lsp`
|
|
8
|
+
|
|
9
|
+
You normally install the meta package `openplanet-lsp` instead of this package directly.
|
package/bin/.gitkeep
ADDED
|
File without changes
|
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "openplanet-lsp-darwin-arm64",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "openplanet-lsp native binary for darwin-arm64",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://github.com/clankercode/lsp-openplanet",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/clankercode/lsp-openplanet.git",
|
|
10
|
+
"directory": "npm/openplanet-lsp-darwin-arm64"
|
|
11
|
+
},
|
|
12
|
+
"os": [
|
|
13
|
+
"darwin"
|
|
14
|
+
],
|
|
15
|
+
"cpu": [
|
|
16
|
+
"arm64"
|
|
17
|
+
],
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": ">=18"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"bin",
|
|
23
|
+
"README.md"
|
|
24
|
+
],
|
|
25
|
+
"preferUnplugged": true,
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
}
|
|
29
|
+
}
|