-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.62 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "stackmint",
"version": "0.1.8",
"description": "Scaffold any TypeScript full-stack project in seconds",
"type": "module",
"bin": {
"stackmint": "dist/bin/stackmint.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "bun run bin/stackmint.ts",
"build": "node scripts/embed-logo.cjs && tsup",
"build:check": "npm run build && node dist/bin/stackmint.js --version",
"test": "vitest run",
"test:smoke": "vitest run tests/smoke",
"test:frameworks": "bun tests/test-frameworks.ts",
"test:integration": "bun tests/test-integration.ts",
"lint": "echo 'No lint configured'",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && npm run build:check"
},
"keywords": [
"scaffold",
"cli",
"typescript",
"nextjs",
"full-stack",
"create",
"template",
"drizzle",
"trpc",
"hono",
"project-generator",
"stack-scaffolding"
],
"license": "MIT",
"author": "Sayansenapati",
"repository": {
"type": "git",
"url": "git+https://github.com/senapati484/stackmint.git"
},
"bugs": {
"url": "https://github.com/senapati484/stackmint/issues"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=6.0.0"
},
"dependencies": {
"@clack/prompts": "^1.3.0",
"chalk": "^5.6.2",
"execa": "^9.6.1",
"fs-extra": "^11.3.5",
"ora": "^9.4.0",
"semver": "^7.8.0",
"commander": "^14.0.3"
},
"devDependencies": {
"@types/bun": "^1.3.13",
"@types/node": "^25.6.2",
"@types/fs-extra": "^11.0.4",
"tsup": "^8.5.1",
"tsx": "^4.19.4",
"typescript": "^5.9.3",
"vitest": "^4.1.5"
}
}