-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·38 lines (38 loc) · 900 Bytes
/
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
{
"name": "tiny-bin",
"repository": "github:fabiospampinato/tiny-bin",
"description": "A library for building tiny and beautiful command line apps.",
"version": "1.10.2",
"type": "module",
"main": "dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "tsex clean",
"compile": "tsex compile",
"compile:watch": "tsex compile --watch",
"prepublishOnly": "tsex prepare"
},
"keywords": [
"tiny",
"bin",
"command",
"line",
"app",
"cli"
],
"dependencies": {
"ansi-purge": "^1.0.0",
"fast-string-width": "^1.0.5",
"get-current-package": "^1.0.0",
"tiny-colors": "^2.2.0",
"tiny-levenshtein": "^1.0.0",
"tiny-parse-argv": "^2.8.0",
"tiny-updater": "^3.5.2"
},
"devDependencies": {
"@types/node": "^20.4.6",
"tsex": "^3.2.1",
"typescript": "^5.4.5"
}
}