-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.17 KB
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
{
"name": "create-stackbuild",
"version": "0.3.0",
"description": "Interactive full-stack monorepo scaffolder",
"type": "module",
"bin": {
"create-stackbuild": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pachared/Stackbuild.create.project.git"
},
"bugs": {
"url": "https://github.com/Pachared/Stackbuild.create.project/issues"
},
"homepage": "https://github.com/Pachared/Stackbuild.create.project#readme",
"files": [
"dist",
"templates",
"README.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write ."
},
"dependencies": {
"@inquirer/prompts": "^7.8.0",
"commander": "^14.0.0",
"execa": "^9.6.0",
"fs-extra": "^11.3.1",
"ora": "^9.0.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.0.0",
"eslint": "^9.30.0",
"prettier": "^3.6.0",
"tsup": "^8.5.0",
"typescript": "^5.8.0",
"vitest": "^3.2.0"
}
}