-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.71 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "gguf",
"version": "1.0.7",
"license": "MIT",
"author": "Ben Williams <[email protected]>",
"main": "dist/index.js",
"module": "dist/gguf.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"analyze": "size-limit --why",
"build": "dts build",
"lint": "dts lint",
"prepare": "dts build",
"size": "size-limit",
"start": "dts watch",
"generate-zodValidators": "ts-to-zod src/metadataTypes.ts src/zodValidators.ts",
"test": "dts test",
"publish": "yarn build && yarn npm publish"
},
"jest": {
"testEnvironment": "node"
},
"engines": {
"node": ">=18"
},
"size-limit": [
{
"path": "dist/gguf.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/gguf.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^9.0.0",
"@tsconfig/recommended": "^1.0.2",
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"dts-cli": "^2.0.3",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"prettier": "^3.0.1",
"size-limit": "^9.0.0",
"ts-to-zod": "^3.1.3",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"dependencies": {
"fs-extra": "^11.1.1",
"zod": "^3.22.2"
},
"packageManager": "[email protected]"
}