-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.86 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
67
68
69
70
71
72
73
74
75
{
"name": "@lenml/tokenizer-baichuan2",
"version": "3.0.1",
"description": "baichuan2 tokenizer for NodeJS/Browser",
"source": "src/main.ts",
"main": "dist/main.js",
"module": "dist/main.mjs",
"unpkg": "dist/main.global.js",
"types": "dist/main.d.ts",
"exports": {
".": {
"import": "./dist/main.mjs",
"require": "./dist/main.js",
"types": "./dist/main.d.ts"
},
"./src/main": "./src/main.ts",
"./src/main.ts": "./src/main.ts",
"./src/data": "./src/data.ts",
"./src/data.ts": "./src/data.ts",
"./models/tokenizer": "./models/tokenizer.json",
"./models/tokenizer.json": "./models/tokenizer.json",
"./models/tokenizer_config": "./models/tokenizer_config.json",
"./models/tokenizer_config.json": "./models/tokenizer_config.json",
"./dist/main.global.js": "./dist/main.global.js"
},
"files": [
"dist/**.js*",
"dist/**.mjs*",
"dist/**.ts",
"src/**.ts",
"models/**.json"
],
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"dev": "pnpm watch",
"start": "pnpm build",
"test": "jest",
"test:coverage": "jest --coverage",
"prepack": "pnpm build"
},
"keywords": [
"llama",
"llama2",
"llama3",
"chatgpt",
"mistral",
"tokenizer",
"baichuan2"
],
"license": "Apache-2.0",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lenML/tokenizers.git"
},
"author": "zhzluke96",
"bugs": {
"url": "https://github.com/lenML/tokenizers/issues"
},
"homepage": "https://github.com/lenML/tokenizers#readme",
"devDependencies": {
"@types/node": "^20.12.7",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@lenml/tokenizers": "workspace:^"
}
}