-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "grammar-builder",
"module": "out/index.js",
"main": "out/index.js",
"type": "module",
"version": "0.0.5",
"description": "A simple grammar builder compatible with GBNF (llama.cpp)",
"keywords": [
"grammar",
"llama.cpp",
"GBNF",
"constrained generation",
"LLM"
],
"author": "Gabriel Peracio <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gabriel-peracio/grammar-builder/issues"
},
"homepage": "https://github.com/gabriel-peracio/grammar-builder#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/gabriel-peracio/grammar-builder.git"
},
"exports": {
".": "./out/index.js"
},
"types": "./out/index.d.ts",
"files": [
"out"
],
"scripts": {
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"build": "bun build --entrypoints src/index.ts --outdir ./out --target browser --sourcemap=external --minify && bunx tsc",
"prepublishOnly": "bun run clean && bun run build",
"clean": "rm -rf ./out"
},
"devDependencies": {
"@types/bun": "latest",
"@types/lodash-es": "^4.17.12",
"typescript": "^5.4.5"
},
"dependencies": {
"lodash-es": "^4.17.21"
}
}