-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1006 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1006 Bytes
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
{
"name": "ts-to-zod",
"version": "0.2.4",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "ts-node scripts/start.ts",
"watch": "nodemon -e js,ts --exec ts-node scripts/watch.ts",
"test": "jest",
"clean": "rimraf dist *.tsbuildinfo",
"format": "prettier -w .",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run clean && npm run build && npm test"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/json5": "^2.2.0",
"@types/node": "^20.10.3",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"nodemon": "^3.1.4",
"prettier": "^2.8.8",
"rimraf": "^5.0.5",
"stainless": "workspace:*",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
},
"dependencies": {
"@types/lodash": "^4.14.202",
"lodash": "^4.17.21",
"pkg-up": "~3.1.0",
"ts-morph": "^19.0.0",
"zod": "^4.3.6"
}
}