generated from pyncz/template.ts-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.3 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
{
"name": "@pyncz/zod-key-mapper",
"description": "Transform keys of zod object schemas",
"version": "1.0.1",
"license": "MIT",
"type": "module",
"author": "Pavel Yankovski <https://github.com/pyncz>",
"keywords": [
"typescript",
"zod",
"validation",
"keys"
],
"scripts": {
"build": "unbuild",
"lint": "eslint .",
"lintfix": "nr lint --fix",
"test": "vitest run"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"dependencies": {
"zod": "^3.21.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.26.2",
"@antfu/ni": "^0.17.2",
"eslint": "^8.23.0",
"lint-staged": ">=10",
"simple-git": "^3.17.0",
"simple-git-hooks": "^2.8.1",
"typescript": "^4.8.4",
"unbuild": "^0.7.4",
"vitest": "^0.24.5"
},
"repository": {
"type": "git",
"url": "https://github.com/pyncz/zod-key-mapper"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
]
},
"simple-git-hooks": {
"pre-commit": "nr lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue}": [
"eslint --fix"
]
}
}