-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.13 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.13 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
{
"name": "noarg",
"version": "4.0.0",
"scripts": {
"lint": "eslint .",
"test": "bun test",
"dev": "npmize dev",
"build": "npmize build",
"tsc": "tsc --watch --noEmit",
"lab": "tsx --watch ./src/__tests__/index.ts",
"cjs": "node --watch ./dist/__tests__/index.cjs",
"mjs": "node --watch ./dist/__tests__/index.mjs"
},
"dependencies": {
"@inquirer/prompts": "^7.5.0",
"ansi-colors": "^4.1.3",
"cli-table3": "^0.6.5"
},
"devDependencies": {
"@types/bun": "^1.2.11",
"@types/node": "^22.15.3",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"jiti": "^2.4.2",
"npmize": "^1.1.11",
"prettier-plugin-jsdoc": "^1.3.2",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.1"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"repository": {
"type": "git",
"url": "https://github.com/NazmusSayad/noarg.git"
},
"keywords": [
"noarg",
"noargs",
"no-arg",
"no-args",
"node arg",
"node args",
"node argv"
]
}