-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.27 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "impact-compass",
"version": "0.3.0",
"description": "Startup idea validator and market research CLI for product-market fit, demand validation, and competitive analysis.",
"author": "Aditya Chauhan",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/adityachauhan0/impact-compass.git"
},
"homepage": "https://github.com/adityachauhan0/impact-compass#readme",
"bugs": {
"url": "https://github.com/adityachauhan0/impact-compass/issues"
},
"private": false,
"bin": {
"impact-compass": "./bin/impact-compass.js"
},
"keywords": [
"market-research",
"idea-validation",
"startup-validation",
"startup-idea-validator",
"product-validation",
"market-validation",
"competitive-analysis",
"product-market-fit",
"pmf",
"demand-validation",
"demand-analysis",
"market-analysis",
"market-saturation",
"red-ocean",
"blue-ocean",
"trend-analysis",
"public-evidence",
"startup",
"startup-ideas",
"saas",
"founder-tools",
"indie-hacker",
"indie-hackers",
"mvp",
"cli",
"npx",
"analytics",
"developer-tools",
"ai-agents",
"scoring",
"deterministic",
"no-ai",
"github",
"npm",
"reddit",
"hacker-news",
"stackexchange"
],
"files": [
"assets/",
"bin/",
"src/",
"DOCUMENTATION.md",
"SKILLS.md",
"example-*.json",
"tsconfig.json"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"test": "vitest run",
"start": "next start",
"lint": "eslint",
"cli": "npx tsx src/cli.ts"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"katex": "^0.17.0",
"lucide-react": "^1.16.0",
"next": "16.2.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"tsx": "^4.22.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"jsdom": "^29.1.1",
"playwright": "^1.60.0",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.7"
},
"overrides": {
"postcss": "8.5.15"
}
}