-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
44 lines (44 loc) · 978 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
{
"name": "gpt-3-encoder",
"version": "1.1.4",
"description": "Javascript BPE Encoder Decoder for GPT-2 / GPT-3",
"main": "index.js",
"files": [
"data",
"Encoder.js",
"index.js",
"utils.js"
],
"scripts": {
"test": "jest",
"build-types": "tsc -p .",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/AIDungeon/GPT-3-Encoder.git"
},
"author": "",
"contributors": [
{
"name": "Bazyli Brzoska",
"email": "[email protected]",
"url": "https://github.com/niieani"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/AIDungeon/GPT-3-Encoder/issues"
},
"homepage": "https://github.com/AIDungeon/GPT-3-Encoder#readme",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"typescript": "^5.0.4"
},
"prettier": {
"trailingComma": "all"
}
}