-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.03 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.03 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@evan-coder/setupr",
"version": "1.0.1",
"description": "Intelligent project setup & management CLI. Auto-detects your stack, installs dependencies, configures environments, and keeps projects healthy.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Evan1108-Coder/Setupr.git"
},
"bugs": {
"url": "https://github.com/Evan1108-Coder/Setupr/issues"
},
"homepage": "https://github.com/Evan1108-Coder/Setupr#readme",
"bin": {
"setupr": "dist/setup.js",
"setup": "dist/setup.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"README.md",
"SETUP.md",
"ENVREADME.md",
"TROUBLESHOOTING.md",
"LICENSE",
".env.example"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"start": "node dist/setup.js",
"smoke:fixtures": "npm run build && node scripts/smoke-fixtures.mjs",
"smoke:fixtures:tui": "npm run build && node scripts/smoke-fixtures.mjs --tui"
},
"keywords": [
"project-setup",
"cli",
"devtools",
"ai",
"tui",
"environment",
"dependencies",
"automation"
],
"author": "Evan Lu",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"ansi-escapes": "^7.0.0",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"cli-cursor": "^5.0.0",
"figures": "^6.1.0",
"glob": "^13.0.6",
"ink": "^5.1.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"meow": "^13.2.0",
"openai": "^4.78.0",
"ora": "^8.1.1",
"react": "^18.3.1",
"strip-ansi": "^7.1.0",
"yaml": "^2.7.1",
"zustand": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^22.10.0",
"@types/react": "^18.3.12",
"@vitest/coverage-v8": "^4.1.7",
"eslint": "^9.15.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.59.4",
"vitest": "^4.1.7"
}
}