-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.62 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "effso",
"type": "module",
"version": "0.9.6",
"packageManager": "[email protected]",
"description": "Effso is a tool to help you operate files and directories in a more efficient way.",
"author": "alexzhang1030",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alexzhang1030/effso.git"
},
"keywords": [
"CLI",
"effso",
"file system",
"file"
],
"bin": {
"effso": "./bin/effso.mjs"
},
"files": [
"bin",
"dist",
"template"
],
"scripts": {
"play": "tsx ./src/cli.ts",
"build": "unbuild",
"prepublishOnly": "pnpm run build",
"release": "bumpp --commit \"chore: release v%s\" --push --tag && pnpm publish",
"dep:up": "taze -I major"
},
"dependencies": {
"cac": "^6.7.14",
"consola": "^3.2.3",
"degit": "^2.8.4",
"esbuild": "^0.24.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@clack/core": "^0.3.4",
"@clack/prompts": "^0.7.0",
"@types/degit": "^2.8.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.9.0",
"bumpp": "^9.8.1",
"colorette": "^2.0.20",
"destr": "^2.0.3",
"eslint": "^9.14.0",
"home-or-tmp": "^4.0.0",
"lint-staged": "^15.2.10",
"pathe": "^1.1.2",
"pkg-dir": "^8.0.0",
"putil-merge": "^3.13.0",
"simple-git-hooks": "^2.11.1",
"taze": "^0.18.0",
"tsx": "^4.19.2",
"typescript": "5.6.3",
"unbuild": "^2.0.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*": [
"eslint --fix"
]
}
}