@mearie/native 0.0.0 → 0.0.1-next.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 ADDED
@@ -0,0 +1,12 @@
1
+ # @mearie/native
2
+
3
+ Native Rust bindings for Mearie GraphQL client.
4
+
5
+ This package provides high-performance native bindings for GraphQL parsing,
6
+ JavaScript/TypeScript analysis, and code generation. It is written in Rust and
7
+ compiled to native code for optimal performance. This package is used internally
8
+ by Mearie's build tools and is not intended for direct use.
9
+
10
+ ## Documentation
11
+
12
+ Full documentation is available at <https://mearie.dev/>.
package/package.json CHANGED
@@ -1,24 +1,19 @@
1
1
  {
2
2
  "name": "@mearie/native",
3
- "version": "0.0.0",
4
- "description": "Mearie GraphQL native bindings",
5
- "license": "MIT",
3
+ "version": "0.0.1-next.1",
4
+ "sideEffects": false,
6
5
  "type": "commonjs",
7
6
  "main": "./dist/index.js",
8
7
  "types": "./dist/index.d.ts",
9
8
  "files": [
10
- "dist"
9
+ "dist/index.js",
10
+ "dist/index.d.ts",
11
+ "package.json",
12
+ "README.md"
11
13
  ],
12
14
  "devDependencies": {
13
15
  "@napi-rs/cli": "^3.3.1"
14
16
  },
15
- "optionalDependencies": {
16
- "@mearie/native-linux-arm64-gnu": "0.0.0",
17
- "@mearie/native-darwin-x64": "0.0.0",
18
- "@mearie/native-linux-x64-gnu": "0.0.0",
19
- "@mearie/native-win32-x64-msvc": "0.0.0",
20
- "@mearie/native-darwin-arm64": "0.0.0"
21
- },
22
17
  "publishConfig": {
23
18
  "access": "public"
24
19
  },
@@ -34,6 +29,7 @@
34
29
  },
35
30
  "scripts": {
36
31
  "build": "napi build --release --output-dir=dist --platform",
32
+ "napi:prepare": "napi create-npm-dirs && napi artifacts",
37
33
  "test": "cargo test --no-default-features"
38
34
  }
39
35
  }