-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 923 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": "hyllama",
"version": "0.2.2",
"description": "llama.cpp gguf file parser for javascript",
"keywords": [
"llama",
"llama.cpp",
"llama-cpp",
"llamacpp",
"llm",
"gguf",
"parser",
"machine learning",
"ml"
],
"license": "MIT",
"main": "src/hyllama.js",
"files": [
"src"
],
"type": "module",
"types": "src/hyllama.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/hyparam/hyllama.git"
},
"scripts": {
"coverage": "vitest run --coverage",
"demo": "http-server -o",
"lint": "eslint .",
"test": "vitest run",
"typecheck": "tsc"
},
"devDependencies": {
"@types/node": "20.14.5",
"@vitest/coverage-v8": "1.6.0",
"eslint": "8.57.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.2.12",
"http-server": "14.1.1",
"typescript": "5.4.5",
"vitest": "1.6.0"
}
}