@oh-my-pi/pi-natives-darwin-x64 0.0.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 +5 -0
- package/package.json +23 -0
package/README.md
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# @oh-my-pi/pi-natives-darwin-x64
|
|
2
|
+
|
|
3
|
+
Placeholder package reserving the npm name for the `darwin-x64` native addon of `@oh-my-pi/pi-natives`.
|
|
4
|
+
|
|
5
|
+
This `0.0.0` release ships no binary. The real, versioned platform addon is generated during release and installed as an optional dependency of the core package.
|
package/package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@oh-my-pi/pi-natives-darwin-x64",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Placeholder for the darwin-x64 native addon of @oh-my-pi/pi-natives. The real binary is published during release.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"os": [
|
|
7
|
+
"darwin"
|
|
8
|
+
],
|
|
9
|
+
"cpu": [
|
|
10
|
+
"x64"
|
|
11
|
+
],
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/can1357/oh-my-pi.git",
|
|
15
|
+
"directory": "packages/natives"
|
|
16
|
+
},
|
|
17
|
+
"engines": {
|
|
18
|
+
"bun": ">=1.3.14"
|
|
19
|
+
},
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
}
|
|
23
|
+
}
|