@atomixstudio/mcp 0.1.1 → 1.0.0

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 CHANGED
@@ -1,50 +1,50 @@
1
1
  {
2
2
  "name": "@atomixstudio/mcp",
3
- "version": "0.1.1",
4
- "description": "MCP server for Atomix design tokens - enables AI tools to consume design system tokens",
3
+ "version": "1.0.0",
4
+ "description": "MCP server for Atomix Design System - query your design tokens from AI coding tools",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
+ "module": "dist/index.js",
7
8
  "types": "dist/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "types": "./dist/index.d.ts",
11
- "import": "./dist/index.js",
12
- "require": "./dist/index.js"
13
- },
14
- "./ai-rules-generator": {
15
- "types": "./dist/ai-rules-generator.d.ts",
16
- "import": "./dist/ai-rules-generator.js",
17
- "require": "./dist/ai-rules-generator.js"
18
- }
19
- },
20
9
  "bin": {
21
- "atomixstudio-mcp": "dist/index.js"
10
+ "atomix": "./dist/index.js",
11
+ "atomix-mcp": "./dist/index.js"
22
12
  },
13
+ "files": [
14
+ "dist"
15
+ ],
23
16
  "scripts": {
24
- "sync": "node scripts/sync-component-tokens.cjs",
25
- "build": "npm run sync && tsup",
17
+ "build": "tsup",
26
18
  "dev": "tsup --watch",
27
19
  "start": "node dist/index.js",
28
- "test": "node --test",
29
- "test:stress": "node tests/stress-test.cjs --all",
30
- "test:scenario": "node tests/stress-test.cjs"
31
- },
32
- "dependencies": {
33
- "@modelcontextprotocol/sdk": "^1.0.0"
34
- },
35
- "devDependencies": {
36
- "@types/node": "^20.0.0",
37
- "tsup": "^8.0.0",
38
- "typescript": "^5.0.0"
20
+ "typecheck": "tsc --noEmit"
39
21
  },
40
22
  "keywords": [
41
23
  "mcp",
24
+ "design-system",
42
25
  "design-tokens",
43
26
  "atomix",
44
27
  "cursor",
45
- "ai"
28
+ "ai-coding",
29
+ "model-context-protocol"
46
30
  ],
47
- "author": "Atomix",
48
- "license": "MIT"
31
+ "author": "Atomix Studio",
32
+ "license": "MIT",
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "https://github.com/atomixstudio/atomix"
36
+ },
37
+ "homepage": "https://atomixstudio.eu",
38
+ "dependencies": {
39
+ "@modelcontextprotocol/sdk": "^1.0.0"
40
+ },
41
+ "devDependencies": {
42
+ "@types/node": "^20.10.0",
43
+ "tsup": "^8.0.0",
44
+ "typescript": "^5.3.0"
45
+ },
46
+ "engines": {
47
+ "node": ">=18.0.0"
48
+ }
49
49
  }
50
50