-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
167 lines (167 loc) · 4.47 KB
/
Copy pathpackage.json
File metadata and controls
167 lines (167 loc) · 4.47 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{
"name": "@syncedco/motion",
"version": "1.0.0",
"description": "Accessible, framework-neutral scroll and interaction animation for the web. Sixty validated GSAP recipes with reduced-motion, no-JS and cleanup behaviour built into the contract.",
"type": "module",
"author": "Scott Mackey",
"homepage": "https://github.com/SyncedCo/synced-motion#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/SyncedCo/synced-motion.git"
},
"bugs": {
"url": "https://github.com/SyncedCo/synced-motion/issues"
},
"publishConfig": {
"access": "public"
},
"sideEffects": [
"./dist/styles.css"
],
"files": [
"bin",
"dist",
"docs",
"README.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md",
"SECURITY.md",
"SUPPORT.md",
"TRADEMARKS.md",
"LICENSE"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"synced-motion": "./bin/synced-motion.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./full": {
"types": "./dist/full.d.ts",
"import": "./dist/full.js"
},
"./plugins": {
"types": "./dist/plugins.d.ts",
"import": "./dist/plugins.js"
},
"./recipes": {
"types": "./dist/recipes.d.ts",
"import": "./dist/recipes.js"
},
"./styles.css": "./dist/styles.css",
"./lenis": {
"types": "./dist/lenis.d.ts",
"import": "./dist/lenis.js"
},
"./mcp": {
"types": "./dist/mcp.d.ts",
"import": "./dist/mcp.js"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.js"
},
"./vue": {
"types": "./dist/vue.d.ts",
"import": "./dist/vue.js"
},
"./svelte": {
"types": "./dist/svelte.d.ts",
"import": "./dist/svelte.js"
},
"./astro": {
"types": "./dist/astro.d.ts",
"import": "./dist/astro.js"
},
"./wordpress": {
"types": "./dist/wordpress.d.ts",
"import": "./dist/wordpress.js"
}
},
"scripts": {
"build": "tsup && node scripts/copy-declarations.mjs",
"dev": "vite example",
"gallery": "vite example --open /gallery/",
"cli": "node ./bin/synced-motion.mjs",
"mcp": "node ./bin/synced-motion.mjs mcp",
"motion:validate": "node ./bin/synced-motion.mjs validate",
"motion:doctor": "node ./bin/synced-motion.mjs doctor",
"motion:mcp": "node ./bin/synced-motion.mjs mcp",
"mcp:check": "node scripts/check-mcp.mjs",
"flow:build": "synced-flow build",
"flow:check": "synced-flow build --check",
"flow:lint": "synced-flow lint",
"flow:doctor": "synced-flow doctor",
"flow:watch": "synced-flow watch",
"test": "vitest run",
"test:watch": "vitest",
"test:browser": "playwright test",
"test:browser:ui": "playwright test --ui",
"units:check": "node scripts/check-units.mjs",
"types:check": "node scripts/check-declarations.mjs",
"size:check": "node scripts/check-size.mjs",
"docs:build": "node scripts/build-docs.mjs",
"docs:check": "node scripts/build-docs.mjs --check",
"gallery:build": "vite build --config example/gallery/vite.config.js",
"check": "npm run flow:check && npm run flow:lint && npm run flow:doctor && npm run units:check && npm run test && npm run build && npm run types:check && npm run size:check && npm run docs:check && npm run motion:validate && npm run motion:doctor && npm run mcp:check",
"pack:check": "npm pack --dry-run"
},
"keywords": [
"animation",
"gsap",
"scrolltrigger",
"lenis",
"synced-flow",
"motion",
"scroll-animation"
],
"license": "MIT",
"peerDependencies": {
"@gsap/react": ">=2.1.0",
"gsap": ">=3.13.0",
"react": ">=18.0.0",
"vue": ">=3.0.0"
},
"peerDependenciesMeta": {
"@gsap/react": {
"optional": true
},
"react": {
"optional": true
},
"vue": {
"optional": true
}
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"lenis": "^1.3.25",
"zod": "^4.4.3"
},
"devDependencies": {
"@gsap/react": "^2.1.2",
"@playwright/test": "^1.62.0",
"@syncedco/flow": "^0.3.2",
"axe-core": "^4.12.1",
"gsap": "^3.15.0",
"jsdom": "^29.1.1",
"react": "^19.2.7",
"tsup": "^8.5.1",
"typescript": "5.7.3",
"vite": "^8.1.4",
"vitest": "^4.1.10",
"vue": "^3.5.40"
},
"engines": {
"node": ">=20"
},
"overrides": {
"esbuild": "^0.28.1"
}
}