forked from huggingface/tokenizers
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from aaronclong/fork-node-packing
build(node): Include binaries in NPM packing
- Loading branch information
Showing
4 changed files
with
92 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,45 @@ | ||
{ | ||
"name": "tokenizers", | ||
"name": "@turingscript/tokenizers", | ||
"version": "0.14.0-dev0", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/huggingface/tokenizers.git" | ||
"url": "git+https://github.com/turingscript/tokenizers.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/huggingface/tokenizers/issues" | ||
"url": "https://github.com/turingscript/tokenizers/issues" | ||
}, | ||
"homepage": "https://github.com/huggingface/tokenizers/tree/master/bindings/node", | ||
"homepage": "https://github.com/turingscript/tokenizers/tree/master/bindings/node", | ||
"author": "Anthony MOI <[email protected]>", | ||
"license": "Apache-2.0", | ||
"description": "Provides an implementation of today's most used tokenizers, with a focus on performances and versatility.", | ||
"files": [ | ||
"index.d.ts", | ||
"index.js" | ||
"index.js", | ||
"tokenizers.android-arm64.node", | ||
"tokenizers-android-arm64", | ||
"tokenizers.android-arm-eabi.node", | ||
"tokenizers-android-arm-eabi", | ||
"tokenizers.win32-x64-msvc.node", | ||
"tokenizers-win32-x64-msvc", | ||
"tokenizers.win32-ia32-msvc.node", | ||
"tokenizers-win32-ia32-msvc", | ||
"tokenizers.win32-arm64-msvc.node", | ||
"tokenizers-win32-arm64-msvc", | ||
"tokenizers.darwin-universal.node", | ||
"tokenizers-darwin-universal", | ||
"tokenizers.darwin-x64.node", | ||
"tokenizers-darwin-x64", | ||
"tokenizers.darwin-arm64.node", | ||
"tokenizers-darwin-arm64", | ||
"tokenizers.freebsd-x64.node", | ||
"tokenizers-freebsd-x64", | ||
"tokenizers.linux-x64-musl.node", | ||
"tokenizers-linux-x64-musl", | ||
"tokenizers.linux-x64-gnu.node", | ||
"tokenizers-linux-x64-gnu", | ||
"tokenizers.linux-arm64-musl.node", | ||
"tokenizers-linux-arm64-musl", | ||
"tokenizers.linux-arm64-gnu.node" | ||
], | ||
"napi": { | ||
"name": "tokenizers", | ||
|
@@ -26,6 +51,7 @@ | |
"i686-pc-windows-msvc", | ||
"armv7-unknown-linux-gnueabihf", | ||
"aarch64-apple-darwin", | ||
"arm64-apple-darwin", | ||
"aarch64-linux-android", | ||
"x86_64-unknown-freebsd", | ||
"aarch64-unknown-linux-musl", | ||
|
@@ -109,5 +135,9 @@ | |
"singleQuote": true, | ||
"arrowParens": "always" | ||
}, | ||
"packageManager": "[email protected]" | ||
"packageManager": "[email protected]", | ||
"volta": { | ||
"node": "20.11.1", | ||
"yarn": "3.5.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters