-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.62 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
{
"name": "zod-args-parser",
"version": "1.0.8",
"description": "A strictly typed command-line arguments parser powered by Zod.",
"author": "Ahmed ALABSI <alabsi91@gmail>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alabsi91/zod-args-parser.git"
},
"type": "module",
"scripts": {
"dev": "tsx watch example/index.ts",
"build": "node scripts/build.mjs",
"test": "eslint src/** --fix && tsc --noEmit && tsx test/test.ts",
"prepare": "npm run test && npm run build"
},
"main": "./lib/commonjs/index.js",
"module": "./lib/module/index.js",
"types": "./lib/typescript/index.d.ts",
"exports": {
".": {
"import": "./lib/module/index.js",
"require": "./lib/commonjs/index.js",
"default": "./lib/module/index",
"types": "./lib/typescript/index.d.ts"
}
},
"files": [
"lib",
"src"
],
"keywords": [
"command-line",
"cli",
"arguments",
"parser",
"zod",
"typescript"
],
"dependencies": {
"chalk": "^5.3.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/compat": "^1.2.3",
"@eslint/js": "^9.14.0",
"@types/babel__core": "^7.20.5",
"@types/node": "^22.9.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"glob": "^11.0.0",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
}
}