-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1000 Bytes
/
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
40
41
42
43
44
45
{
"name": "tokenizejs",
"version": "0.0.1",
"description": "A JS/TS Tokenizer for LLM models",
"types": "index.d.ts",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc --build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GPTSafe/TokenizeJS.git"
},
"keywords": [
"LLM",
"GPT",
"GPT3",
"GPT4",
"GPT-3",
"GPT-4",
"OpenAI",
"Tokenizer"
],
"author": "Phil Sautter",
"license": "MIT",
"bugs": {
"url": "https://github.com/GPTSafe/TokenizeJS/issues"
},
"homepage": "https://github.com/GPTSafe/TokenizeJS#readme",
"dependencies": {
"@jest/globals": "^29.5.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-google": "^0.14.0"
}
}