-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.45 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
{
"name": "@sidebase/nuxt-parse",
"engines": {
"node": ">=16.14.2",
"npm": ">=8.5.0"
},
"version": "0.3.0",
"description": "Parse, validate and transform data with confidence in nuxt using `zod`",
"scripts": {
"test": "vitest --run",
"lint": "eslint \"./src/**/*.{ts,tsx}\" --max-warnings=0",
"type": "tsc --noEmit",
"prepack": "rm -rf dist && tsup src/ --format cjs,esm --dts --dts-resolve",
"docs": "npx typedoc src"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sidebase/nuxt-parse"
},
"keywords": [
"zod",
"nuxt",
"typescript",
"parsing",
"validation",
"vue",
"h3"
],
"author": "sidestream-tech <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sidebase/sidebase/issues/new/choose"
},
"homepage": "https://github.com/sidebase/nuxt-parse",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"@vitest/coverage-c8": "^0.23.1",
"eslint": "^8.23.0",
"tsup": "^6.2.3",
"typescript": "^4.8.2",
"vitest": "^0.23.1"
},
"dependencies": {
"h3": "^0.8.0",
"zod": "^3.19.0"
}
}