Files
tiktoken/js/package.json
T
2023-05-13 13:50:54 +02:00

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": {}
}