design-system-selector 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "design-system-selector",
3
+ "version": "0.1.1",
4
+ "description": "CLI tool that recommends alternative design systems based on your project needs",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "exports": {
8
+ ".": {
9
+ "import": "./dist/index.js"
10
+ }
11
+ },
12
+ "bin": {
13
+ "design-system-selector": "dist/cli.js"
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "README.md",
18
+ "LICENSE"
19
+ ],
20
+ "engines": {
21
+ "node": ">=20.0.0"
22
+ },
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://github.com/TheLostByGass/design-system-selector.git"
26
+ },
27
+ "bugs": {
28
+ "url": "https://github.com/TheLostByGass/design-system-selector/issues"
29
+ },
30
+ "homepage": "https://github.com/TheLostByGass/design-system-selector#readme",
31
+ "scripts": {
32
+ "dev": "tsx --env-file=.env src/index.ts",
33
+ "lint": "eslint src tests",
34
+ "format:check": "prettier --check .",
35
+ "typecheck": "tsc --noEmit",
36
+ "test": "vitest run",
37
+ "test:watch": "vitest",
38
+ "test:e2e:mcp": "vitest run --config vitest.e2e.config.ts",
39
+ "build": "npm run lint && npm run format:check && npm run typecheck && npm test && tsup",
40
+ "prepublishOnly": "tsup"
41
+ },
42
+ "keywords": [
43
+ "design-system",
44
+ "cli",
45
+ "ui",
46
+ "components"
47
+ ],
48
+ "license": "MIT",
49
+ "dependencies": {
50
+ "@anthropic-ai/sdk": "^0.77.0",
51
+ "@inquirer/prompts": "^7.0.0",
52
+ "chalk": "^5.3.0",
53
+ "ora": "^9.3.0"
54
+ },
55
+ "devDependencies": {
56
+ "dotenv": "^17.3.1",
57
+ "@eslint/js": "^10.0.1",
58
+ "@modelcontextprotocol/sdk": "^1.27.1",
59
+ "@types/node": "^22.0.0",
60
+ "eslint": "^10.0.0",
61
+ "prettier": "^3.8.1",
62
+ "tsup": "^8.0.0",
63
+ "tsx": "^4.0.0",
64
+ "typescript": "^5.5.0",
65
+ "typescript-eslint": "^8.56.0",
66
+ "vitest": "^2.0.0"
67
+ }
68
+ }