-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "partial-json",
"version": "0.1.7",
"description": "Parse partial JSON generated by LLM",
"keywords": [
"JSON",
"parser",
"LLM",
"nlp"
],
"homepage": "https://promplate.dev/partial-json-parser",
"repository": "https://github.com/promplate/partial-json-parser-js",
"license": "MIT",
"author": "Muspi Merol <me@promplate.dev>",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./options": {
"types": "./dist/options.d.ts",
"default": "./dist/options.js"
}
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"coverage": "vitest run --coverage",
"format": "prettier --write .",
"test": "vitest",
"test:ui": "vitest --ui"
},
"devDependencies": {
"@vitest/coverage-istanbul": "^1.2.2",
"@vitest/ui": "^1.2.2",
"prettier": "^3.3.3",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
}
}