-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "@anthropic-ai/tokenizer",
"version": "0.0.4",
"description": "Claude tokenizer",
"author": "Anthropic <support@anthropic.com>",
"types": "dist/cjs/index.d.ts",
"main": "dist/cjs/index.js",
"type": "commonjs",
"repository": "github:anthropics/anthropic-tokenizer-typescript",
"license": "Apache-2.0",
"private": false,
"scripts": {
"test": "yarn jest",
"build": "bash ./build",
"prepack": "yarn build",
"format": "prettier --write .",
"tsn": "ts-node -r tsconfig-paths/register",
"fix": "eslint --fix --ext ts,js ."
},
"dependencies": {
"@types/node": "^18.11.18",
"tiktoken": "^1.0.10"
},
"devDependencies": {
"@anthropic-ai/tokenizer": "link:.",
"@types/jest": "^27.5.0",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.22.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^28.1.0",
"prettier": "rattrayalex/prettier#postfix-ternaries",
"ts-jest": "^28.0.2",
"ts-node": "^10.5.0",
"tsc-alias": "^1.6.9",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.8.2"
}
}