-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.18 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.18 KB
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
{
"name": "zodcli",
"version": "0.0.4",
"description": "A CLI parser built with Zod.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prettier": "npx prettier --ignore-unknown --ignore-path=.gitignore .",
"lint:check": "npm run prettier -- --check",
"lint:fix": "npm run prettier -- --write",
"test": "npx vitest",
"build": "npx tsc",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GregBrimble/zodcli.git"
},
"keywords": [
"zod",
"cli",
"command-line",
"argv",
"parser",
"typescript"
],
"author": {
"name": "Greg Brimble",
"email": "developer@gregbrimble.com",
"url": "https://gregbrimble.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/GregBrimble/zodcli/issues"
},
"homepage": "https://github.com/GregBrimble/zodcli#readme",
"volta": {
"node": "16.19.1"
},
"dependencies": {
"typescript": "^4.9.5"
},
"peerDependencies": {
"zod": "^3.21.4"
},
"devDependencies": {
"@types/node": "^18.15.3",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"tsm": "^2.3.0",
"vitest": "^0.29.2"
}
}