-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.43 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.43 KB
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
{
"name": "@atjsh/llmlingua-2",
"version": "2.0.3",
"packageManager": "yarn@4.9.1",
"description": "JavaScript/TypeScript Implementation of LLMLingua-2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/atjsh/llmlingua-2-js.git"
},
"type": "module",
"scripts": {
"clean": "rimraf dist",
"build": "tsc",
"preversion": "rimraf dist && yarn build"
},
"files": [
"dist",
"!dist/e2e"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"dependencies": {
"es-toolkit": "^1.38.0"
},
"devDependencies": {
"@huggingface/transformers": "^3.5.2",
"@tensorflow/tfjs": "^4.22.0",
"@types/node": "^22.15.18",
"js-tiktoken": "^1.0.20",
"rimraf": "^6.0.1",
"typedoc": "^0.28.4",
"typescript": "^5.8.3"
},
"peerDependencies": {
"@huggingface/transformers": "*",
"@tensorflow/tfjs": "*",
"js-tiktoken": "*"
},
"keywords": [
"llmlingua",
"llmlingua2",
"llmlingua-2",
"llm",
"language model",
"transformer",
"javascript",
"typescript",
"summarization",
"translation",
"text generation",
"text classification",
"question answering",
"named entity recognition",
"sentiment analysis",
"huggingface",
"hf",
"transformers",
"tensorflow",
"tfjs",
"webgpu",
"webassembly",
"onnx",
"onnxruntime"
]
}