-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 967 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 967 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
{
"name": "massarg",
"version": "2.1.1",
"description": "Flexible, powerful, and simple command/argument parser for CLI applications",
"keywords": [
"shell",
"cli",
"parser",
"typescript",
"args",
"command-line"
],
"main": "index.js",
"repository": "https://github.com/chenasraf/massarg.git",
"author": "Chen Asraf <chenasrafil@gmail.com>",
"license": "Apache",
"scripts": {
"build": "tsc -p tsconfig.build.json && cp package.json README.md build",
"dev": "tsc --watch",
"cmd": "ts-node src/sample.ts",
"test": "vitest run",
"docs:build": "cd docs && pnpm build",
"docs:watch": "cd docs && pnpm start",
"docs:deploy": "pnpm docs:build && gh-pages -d docs"
},
"devDependencies": {
"@types/node": "^25.0.10",
"gh-pages": "^6.3.0",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^3.0.0"
},
"dependencies": {
"zod": "^4.3.6"
}
}