mirror of
https://github.com/Mintplex-Labs/tiktoken.git
synced 2026-07-01 18:48:04 -04:00
28 lines
906 B
JSON
28 lines
906 B
JSON
{
|
|
"name": "tiktoken",
|
|
"version": "1.0.7",
|
|
"description": "JS/WASM bindings for tiktoken",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "run-s build:*",
|
|
"build:cleanup": "rm -rf dist/",
|
|
"build:wasm": "run-s wasm:*",
|
|
"build:postprocess": "tsx scripts/postprocess.ts",
|
|
"wasm:bundler": "wasm-pack build --target bundler --weak-refs --release --out-dir dist && rm -rf dist/.gitignore dist/README.md dist/package.json",
|
|
"wasm:lite": "wasm-pack build --target bundler --weak-refs --release --out-dir dist/lite --no-default-features && rm -rf dist/lite/.gitignore dist/lite/README.md dist/lite/package.json",
|
|
"test": "yarn vitest run"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/dqbd/tiktoken"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"ts-morph": "^17.0.1"
|
|
},
|
|
"publishConfig": {
|
|
"directory": "./dist",
|
|
"access": "public"
|
|
}
|
|
}
|