-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.26 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
{
"name": "tree2dir",
"version": "1.1.0",
"description": "",
"author": "Srinivas Gowda <[email protected]>",
"license": "MIT",
"type": "module",
"main": "dist/lib.cjs",
"module": "dist/lib.js",
"types": "dist/lib.d.ts",
"bin": {
"tree2dir": "./dist/cli.cjs"
},
"exports": {
".": {
"require": "./dist/lib.cjs",
"import": "./dist/lib.js"
},
"./cli": {
"require": "./dist/cli.cjs",
"import": "./dist/cli.js"
}
},
"directories": {
"test": "tests"
},
"scripts": {
"build": "tsup",
"start": "node dist/index.js",
"dev": "tsup --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solancer/tree2dir.git"
},
"keywords": [
"tree2dir",
"tree2dir-cli",
"tree2dir-cli-tool",
"ascii",
"tree",
"directory",
"file",
"structure"
],
"bugs": {
"url": "https://github.com/solancer/tree2dir/issues"
},
"homepage": "https://github.com/solancer/tree2dir#readme",
"devDependencies": {
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
},
"dependencies": {
"commander": "^11.1.0"
}
}