mirror of
https://github.com/Mintplex-Labs/tiktoken.git
synced 2026-07-01 18:48:04 -04:00
31 lines
538 B
JSON
31 lines
538 B
JSON
{
|
|
"name": "js-tiktoken",
|
|
"version": "1.0.0",
|
|
"description": "JavaScript port of tiktoken",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "vitest run"
|
|
},
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/dqbd/tiktoken"
|
|
},
|
|
"dependencies": {
|
|
"base64-js": "^1.5.1"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {}
|
|
}
|