-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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
{
"name": "@kay-is/warp-contracts-plugin-zod",
"version": "0.1.0",
"description": "Use Zod validation inside Warp Contracts.",
"types": "./lib/types/index.d.ts",
"main": "./lib/cjs/index.js",
"exports": {
".": "./lib/cjs/index.js"
},
"sideEffects": false,
"engines": {
"node": ">=16.5"
},
"scripts": {
"build:cjs": "tsc -b tsconfig.json",
"build:types": "tsc -b tsconfig.types.json",
"build": "yarn run clean && yarn build:cjs && yarn build:types",
"format": "prettier --write 'src/**/*.ts'",
"clean": "rimraf ./lib",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prettier:format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prepublishOnly": "yarn lint:fix",
"preversion": "yarn lint && yarn build",
"version": "yarn format && git add -A src",
"postversion": "git push origin HEAD && git push --tags",
"yalc:publish": "yarn build && yalc publish --push",
"test": "jest",
"test:unit": "jest ./src/__tests__/unit"
},
"license": "MIT",
"files": [
"lib/",
"README.md"
],
"devDependencies": {
"@types/jest": "*",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"eslint": "*",
"eslint-config-prettier": "*",
"eslint-plugin-prettier": "*",
"jest": "*",
"prettier": "*",
"rimraf": "*",
"ts-node": "*",
"typescript": "*",
"warp-contracts": "*",
"zod": "*"
},
"peerDependencies": {
"warp-contracts": "*",
"zod": "*"
}
}