sasso-native-darwin-arm64 0.0.1 → 0.9.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.
Files changed (3) hide show
  1. package/README.md +3 -2
  2. package/package.json +23 -4
  3. package/sasso.node +0 -0
package/README.md CHANGED
@@ -1,4 +1,5 @@
1
1
  # sasso-native-darwin-arm64
2
2
 
3
- Name reserved for [sasso](https://www.npmjs.com/package/sasso) native prebuilds.
4
- Install `sasso` and `import "sasso/native"` — never depend on this package directly.
3
+ Prebuilt [sasso](https://www.npmjs.com/package/sasso) native addon binary for darwin-arm64.
4
+ This package is an internal optionalDependency of `sasso` — install `sasso` and
5
+ `import { compileString } from "sasso/native"` instead of depending on it directly.
package/package.json CHANGED
@@ -1,8 +1,27 @@
1
1
  {
2
2
  "name": "sasso-native-darwin-arm64",
3
- "version": "0.0.1",
4
- "description": "Reserved: prebuilt sasso native addon binary for darwin-arm64. Real binaries ship with sasso >= 0.9.0 — install \"sasso\" and import \"sasso/native\"; never depend on this package directly.",
3
+ "version": "0.9.0",
4
+ "description": "Prebuilt sasso native addon for darwin-arm64. Install \"sasso\" and import \"sasso/native\" never depend on this package directly.",
5
+ "main": "sasso.node",
6
+ "files": [
7
+ "sasso.node"
8
+ ],
9
+ "os": [
10
+ "darwin"
11
+ ],
12
+ "cpu": [
13
+ "arm64"
14
+ ],
5
15
  "license": "MIT OR Apache-2.0",
6
- "repository": { "type": "git", "url": "git+https://github.com/momiji-rs/sasso.git", "directory": "napi" },
7
- "publishConfig": { "access": "public" }
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/momiji-rs/sasso.git",
19
+ "directory": "napi"
20
+ },
21
+ "engines": {
22
+ "node": ">=18"
23
+ },
24
+ "publishConfig": {
25
+ "access": "public"
26
+ }
8
27
  }
package/sasso.node ADDED
Binary file