-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (52 loc) · 938 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
46
47
48
49
50
51
52
{
"name": "openai-tokens",
"version": "0.1.2",
"description": "A service for calculating, managing, truncating openai prompt tokens",
"main": "src/index.js",
"scripts": {
"test": "jest",
"lint": "standard",
"dev": "npm t -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrsteele/openai-tokens.git"
},
"files": [
"/src/*",
"!/src/*test.js"
],
"keywords": [
"openai",
"gpt",
"chatGPT",
"token",
"tokens",
"tiktoken",
"validate",
"truncate",
"models",
"embeddings",
"ada"
],
"standard": {
"env": [
"jest"
]
},
"release": {
"branches": [
"main"
]
},
"author": "Matt Steele <[email protected]>",
"license": "MIT",
"dependencies": {
"isomorphic-fetch": "^3.0.0",
"js-tiktoken": "^1.0.14"
},
"devDependencies": {
"jest": "^29.6.2",
"standard": "^17.1.0"
}
}