forked from latitudegames/GPT-3-Encoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.55 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@aliuq/gpt-3-encoder",
"type": "module",
"version": "1.1.5",
"packageManager": "[email protected]",
"description": "Javascript BPE Encoder Decoder for GPT-2 / GPT-3",
"author": "",
"license": "MIT",
"homepage": "https://github.com/aliuq/GPT-3-Encoder#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/aliuq/GPT-3-Encoder.git"
},
"bugs": {
"url": "https://github.com/aliuq/GPT-3-Encoder/issues"
},
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./fetch": {
"types": "./dist/fetch.d.ts",
"require": "./dist/fetch.cjs",
"import": "./dist/fetch.mjs"
},
"./encoder.json": "./dist/encoder.json",
"./vocab.bpe": "./dist/vocab.bpe"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"types.d.ts"
],
"engines": {
"node": ">=14"
},
"scripts": {
"dev": "tsup --watch --onSuccess \"node dist/index.mjs\"",
"build": "tsup",
"test": "vitest run --coverage",
"lint": "eslint --ext .ts,.js src"
},
"dependencies": {
"axios": "^1.3.3"
},
"devDependencies": {
"@antfu/eslint-config": "^0.35.2",
"@types/node": "^18.14.0",
"@vitest/coverage-c8": "^0.28.5",
"eslint": "^8.34.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5",
"vitest": "^0.28.5"
},
"eslintConfig": {
"extends": "@antfu"
},
"publishConfig": {
"access": "public"
}
}