-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.2 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
{
"name": "jsonapi-zod-query",
"version": "2.1.1",
"description": "Utilities to work with JSON:API on the frontend",
"type": "module",
"author": "Ben Scholzen 'DASPRiD'",
"license": "BSD-3-Clause",
"keywords": [
"query",
"zod",
"tanstack"
],
"repository": {
"type": "git",
"url": "https://github.com/dasprid/jsonapi-zod-query.git"
},
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc && vite build",
"test": "vitest",
"coverage": "vitest run --coverage",
"format": "biome format . --write",
"check": "biome check . --write"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@tsconfig/vite-react": "^3.0.2",
"@vitest/coverage-v8": "^2.1.3",
"lefthook": "^1.7.21",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vite-plugin-dts": "^4.2.4",
"vitest": "^2.1.3",
"zod": "^3.23.8"
},
"peerDependencies": {
"zod": "^3.22.4"
}
}