@etheirystech/takumi-core 0.68.2 → 0.68.4
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 +7 -0
- package/core.darwin-arm64.node +0 -0
- package/core.linux-x64-gnu.node +0 -0
- package/package.json +8 -8
package/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# @takumi-rs/core
|
|
2
|
+
|
|
3
|
+
Takumi is a **image rendering engine** written in Rust and this package provides Node.js bindings using [napi-rs](https://napi.rs/).
|
|
4
|
+
|
|
5
|
+
Please refer to the [Node.js or Bun](https://takumi.kane.tw/docs/integrations/nodejs) page in our official documentation for more details.
|
|
6
|
+
|
|
7
|
+
If you are looking for WebAssembly bindings, take a look at the [@takumi-rs/wasm](https://npmjs.com/package/@takumi-rs/wasm) package.
|
package/core.darwin-arm64.node
CHANGED
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etheirystech/takumi-core",
|
|
3
|
-
"version": "0.68.
|
|
4
|
-
"description": "Custom fork of @takumi-rs/core with extended CSS support",
|
|
3
|
+
"version": "0.68.4",
|
|
5
4
|
"main": "index.js",
|
|
6
|
-
"type": "module",
|
|
7
5
|
"types": "index.d.ts",
|
|
6
|
+
"type": "module",
|
|
8
7
|
"license": "(MIT OR Apache-2.0)",
|
|
9
|
-
"engines": {
|
|
10
|
-
"node": ">= 16.0.0"
|
|
11
|
-
},
|
|
12
8
|
"files": [
|
|
13
9
|
"index.js",
|
|
14
10
|
"index.d.ts",
|
|
15
|
-
"core.darwin-arm64.node"
|
|
16
|
-
|
|
11
|
+
"core.darwin-arm64.node",
|
|
12
|
+
"core.linux-x64-gnu.node"
|
|
13
|
+
],
|
|
14
|
+
"engines": {
|
|
15
|
+
"node": ">= 16.0.0"
|
|
16
|
+
}
|
|
17
17
|
}
|