-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "asciifolders",
"version": "0.0.4",
"description": "Generate ASCII directory trees from any folder on your machine",
"main": "index.js",
"packageManager": "[email protected]",
"engines": {
"node": "^20.9.0",
"pnpm": "^9.0.0"
},
"type": "module",
"bin": {
"asciifolders": "./dist/bin.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "bun build --target=node src/bin.ts --platform=node --outfile=dist/bin.js --format=esm",
"dev": "tsc -w",
"release": "pnpm build && pnpm bumpp package.json --commit \"chore: Release v\" --push --tag"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eihabkhan/asciifolders.git"
},
"keywords": [
"ascii",
"cli",
"folders",
"directories"
],
"author": "Eihab Khan",
"license": "MIT",
"bugs": {
"url": "https://github.com/eihabkhan/asciifolders/issues"
},
"homepage": "https://github.com/eihabkhan/asciifolders#readme",
"devDependencies": {
"@types/bun": "^1.0.4",
"bumpp": "^9.3.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.3.3"
},
"dependencies": {
"@inquirer/prompts": "^3.3.2",
"chalk": "^5.3.0",
"clipboardy": "^4.0.0",
"commander": "^11.1.0",
"log-symbols": "^6.0.0",
"ora": "^8.0.1",
"sanitize-filename": "^1.6.3"
}
}