@easingwizard/mcp-server 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/Readme.md +215 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +18249 -0
- package/package.json +61 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@easingwizard/mcp-server",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Model Context Protocol (MCP) server for the Easing Wizard API - enables generation of various CSS easing curves: Bézier, Spring, Bounce, Wiggle, and Overshoot",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"easingwizard-mcp": "./dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "esbuild src/index.ts --bundle --platform=node --target=node18 --format=esm --outfile=dist/index.js --external:@modelcontextprotocol/sdk",
|
|
12
|
+
"build:types": "tsc --emitDeclarationOnly",
|
|
13
|
+
"build:full": "pnpm run build && pnpm run build:types",
|
|
14
|
+
"watch": "esbuild src/index.ts --bundle --platform=node --target=node18 --format=esm --outfile=dist/index.js --external:@modelcontextprotocol/sdk --banner:js=\"#!/usr/bin/env node\" --watch",
|
|
15
|
+
"start": "node ./dist/index.js",
|
|
16
|
+
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
|
|
17
|
+
"prepublishOnly": "pnpm run build:full"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"README.md",
|
|
22
|
+
"LICENSE"
|
|
23
|
+
],
|
|
24
|
+
"keywords": [
|
|
25
|
+
"mcp",
|
|
26
|
+
"model-context-protocol",
|
|
27
|
+
"easing",
|
|
28
|
+
"css",
|
|
29
|
+
"animation",
|
|
30
|
+
"bezier",
|
|
31
|
+
"spring",
|
|
32
|
+
"bounce",
|
|
33
|
+
"wiggle",
|
|
34
|
+
"overshoot",
|
|
35
|
+
"curves"
|
|
36
|
+
],
|
|
37
|
+
"author": "Matthias Martin",
|
|
38
|
+
"homepage": "https://easingwizard.com",
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "https://github.com/roydigerhund/easingwizard.git",
|
|
42
|
+
"directory": "apps/mcp"
|
|
43
|
+
},
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/roydigerhund/easingwizard/issues"
|
|
46
|
+
},
|
|
47
|
+
"engines": {
|
|
48
|
+
"node": ">=18.0.0"
|
|
49
|
+
},
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"@modelcontextprotocol/sdk": "^1.17.0",
|
|
52
|
+
"zod": "^4.0.14"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@types/node": "^24.1.0",
|
|
56
|
+
"easingwizard-core": "workspace:*",
|
|
57
|
+
"esbuild": "^0.24.0",
|
|
58
|
+
"tsc-alias": "^1.8.16",
|
|
59
|
+
"typescript": "^5.8.0"
|
|
60
|
+
}
|
|
61
|
+
}
|