-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.08 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.08 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
{
"name": "motionspec",
"version": "1.2.7",
"mcpName": "io.github.MasterPlayspots/motionspec",
"description": "Open-core motion layer for the web: deterministic compiler + MCP server. Validates motion specs fail-closed, reports WCAG 2.2.2 pause-path candidates, and flags missing reduced-motion guards (2.3.3, an AAA best practice).",
"license": "MIT",
"author": "Kevin Fröba <security@motionspec.dev>",
"keywords": [
"accessibility",
"a11y",
"wcag",
"reduced-motion",
"prefers-reduced-motion",
"motion-accessibility",
"accessibility-testing",
"animation",
"web-animation",
"css",
"gsap",
"waapi",
"scroll",
"scrolltrigger",
"compiler",
"deterministic",
"mcp",
"mcp-server",
"llm",
"ai-generated",
"json-schema",
"motion"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MasterPlayspots/motionspec.git"
},
"homepage": "https://motionspec.dev",
"bugs": {
"url": "https://github.com/MasterPlayspots/motionspec/issues"
},
"bin": {
"motion": "bin/motion.js",
"motionspec": "src/mcp/server.mjs"
},
"main": "src/compiler/compile.js",
"files": [
"src",
"bin/motion.js",
"bin/promote-gate.js",
"primitives",
"schema",
"catalog.lock.json"
],
"scripts": {
"test": "node --test test/*.test.js test/*.test.mjs",
"coverage": "node --test --experimental-test-coverage --test-coverage-exclude=test/** --test-coverage-exclude=bin/** --test-coverage-lines=90 --test-coverage-functions=90 --test-coverage-branches=75 test/*.test.js test/*.test.mjs",
"e2e": "playwright test",
"sbom": "npm sbom --sbom-format cyclonedx | node bin/sbom-check.js --filter > sbom.cdx.json",
"sbom:check": "node bin/sbom-check.js",
"catalog-lock": "node bin/catalog-lock.js",
"catalog-lock:check": "node bin/catalog-lock.js --check",
"mcp": "node src/mcp/server.mjs",
"test:golden-update": "UPDATE_GOLDEN=1 node --test test/compile.test.js",
"compile": "node bin/motion.js compile",
"route": "node bin/motion.js route",
"pipeline": "node bin/motion.js pipeline",
"catalog": "node bin/motion.js catalog",
"stats": "node bin/motion.js stats",
"prepublishOnly": "npm test && npm run catalog-lock:check && npm run sbom && npm run sbom:check && node bin/license-check.js && node bin/changelog-gate.js",
"release": "npm test && npm run catalog-lock:check && npm run sbom && npm run sbom:check && node bin/license-check.js && npm publish",
"lint": "eslint .",
"prepare": "husky",
"version": "node scripts/sync-server-version.js && git add server.json .claude-plugin/plugin.json README.md"
},
"engines": {
"node": ">=18"
},
"overrides": {
"conventional-commits-parser": "7.0.1"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.30.0",
"zod": "4.5.4"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.50.0",
"eslint": "^10.5.0",
"globals": "^17.6.0",
"husky": "^9.1.7"
}
}