-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 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": "zod-route-schemas",
"version": "0.0.0-development",
"description": "",
"scripts": {
"tc": "toolchain",
"toolchain": "toolchain",
"test": "toolchain test",
"prepublishOnly": "echo This package is meant to be published by semantic-release from the dist build directory. && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@jcoreio/eslint-plugin-implicit-dependencies": "^1.1.1",
"@jcoreio/toolchain": "^3.11.1",
"@jcoreio/toolchain-circle": "^3.11.1",
"@jcoreio/toolchain-esnext": "^3.11.1",
"@jcoreio/toolchain-mocha": "^3.11.1",
"@jcoreio/toolchain-semantic-release": "^3.11.1",
"@jcoreio/toolchain-typescript": "^3.11.1",
"@types/chai": "^4.3.5",
"@types/node": "^20.11.22",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"chai": "^4.3.7",
"eslint": "^8.56.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]",
"dependencies": {
"@babel/runtime": "^7.18.6",
"zod": "^3.22.4"
}
}