forked from mlc-ai/web-llm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "@mlc-ai/web-llm",
"version": "0.2.24",
"description": "Hardware accelerated language model chats on browsers",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c && ./cleanup-index-js.sh",
"lint": "npx eslint .",
"test": "yarn jest"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mlc-ai/web-llm"
},
"keywords": [
"llm",
"large language model",
"machine learning"
],
"license": "Apache-2.0",
"homepage": "https://github.com/mlc-ai/web-llm",
"devDependencies": {
"@mlc-ai/web-tokenizers": "^0.1.2",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@webgpu/types": "^0.1.24",
"buffer": "^5.7.1",
"eslint": "^8.41.0",
"jest": "^29.7.0",
"process": "^0.11.10",
"rollup": "^2.56.2",
"rollup-plugin-ignore": "^1.0.10",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.1.2",
"tslib": "^2.3.1",
"tvmjs": "file:./tvm_home/web",
"typescript": "^4.9.5"
}
}