-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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": "@ethang/project-builder",
"version": "3.0.1",
"description": "",
"license": "ISC",
"author": "Ethan Glover",
"type": "module",
"main": "index.js",
"scripts": {
"build": "node build.mjs",
"lint": "eslint ./src --fix",
"manualBuild": "pnpm tsup src/* --outDir dist --format esm --format cjs"
},
"dependencies": {
"chalk": "^5.3.0",
"fs-extra": "^11.2.0",
"inquirer": "^12.1.0",
"lodash": "^4.17.21",
"simple-git": "^3.27.0",
"sort-package-json": "^2.10.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"devDependencies": {
"@ethang/eslint-config": "19.15.2",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/lodash": "^4.17.13",
"@types/node": "^22.9.0",
"eslint": "^9.14.0",
"type-fest": "^4.26.1",
"typescript-eslint": "^8.14.0"
},
"peerDependencies": {
"chalk": "^5.3.0",
"fs-extra": "^11.2.0",
"inquirer": "^12.1.0",
"lodash": "^4.17.21",
"simple-git": "^3.27.0",
"sort-package-json": "^2.10.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
}
}