-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.05 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
{
"name": "treei",
"version": "1.2.8",
"description": "a directory structure tree generator",
"repository": {
"url": "https://github.com/w2xi/treei"
},
"homepage": "https://github.com/w2xi/treei#readme",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "nr build",
"dev": "tsup src/index.ts --watch",
"build": "tsup src/index.ts --minify",
"release": "bumpp --commit --push --tag && pnpm publish",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src --fix",
"test": "vitest"
},
"bin": {
"treei": "dist/index.js"
},
"keywords": [
"directory",
"tree",
"tree structure"
],
"author": "w2xi",
"license": "MIT",
"devDependencies": {
"@antfu/ni": "^0.21.12",
"@types/node": "^20.11.25",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"bumpp": "^9.4.0",
"eslint": "^8.56.0",
"prettier": "3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"dependencies": {
"commander": "^12.0.0"
}
}