This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.85 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "kiwi-tools",
"private": true,
"type": "module",
"version": "1.0.0",
"license": "MPL-2.0",
"homepage": "https://github.com/FurryRbl/Kiwi",
"description": "A cross-platform command line utility",
"bin": {
"Kiwi": "dist/index.js"
},
"keywords": [
"cli",
"cross-platform",
"command-line",
"command-line-tool",
"command-line-tools"
],
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FurryRbl/Kiwi.git"
},
"bugs": {
"url": "https://github.com/FurryRbl/Kiwi/issues"
},
"author": {
"name": "SharpIce",
"email": "[email protected]",
"url": "https://SharpIce.top"
},
"engines": {
"node": ">=14"
},
"scripts": {
"clean": "rimraf dist",
"lint": "eslint --fix .",
"pre": "prettier . --write",
"kiwi": "node dist/index.js",
"dev": "webpack --mode=development",
"build": "webpack --mode=production",
"build:analyzer": "webpack --mode=production --env analyze"
},
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"chalk": "^5.3.0",
"date-fns": "^4.1.0",
"fuse.js": "^7.0.0",
"minimist": "^1.2.8",
"nanoid": "^5.0.7",
"progress": "^2.0.3"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/eslint__js": "^8.42.3",
"@types/inquirer": "^9.0.7",
"@types/minimist": "^1.2.5",
"@types/node": "^22.7.8",
"@types/progress": "^2.0.7",
"esbuild": "^0.24.0",
"esbuild-loader": "^4.2.2",
"esbuild-register": "^3.6.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"isomorphic-git": "^1.27.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"type-fest": "^4.26.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpackbar": "^6.0.1"
}
}