oddlyalive 0.2.0-alpha.2
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/CHANGELOG.md +45 -0
- package/CONTRIBUTING.md +62 -0
- package/LICENSE +21 -0
- package/README.md +158 -0
- package/SECURITY.md +29 -0
- package/assets/photoreal/PROVENANCE.md +19 -0
- package/assets/photoreal/baseball.png +0 -0
- package/assets/photoreal/basketball.png +0 -0
- package/assets/photoreal/crystal.png +0 -0
- package/assets/photoreal/kicking-cleat.png +0 -0
- package/assets/photoreal/letter-charm-square.png +0 -0
- package/assets/photoreal/letter-charm.png +0 -0
- package/assets/photoreal/sneaker.png +0 -0
- package/assets/photoreal/soccer-ball.png +0 -0
- package/bin/oddlyalive.js +283 -0
- package/docs/ARCHITECTURE.md +55 -0
- package/docs/DEMO-VIDEOS.md +122 -0
- package/docs/QUICKSTART.md +115 -0
- package/docs/ROADMAP.md +33 -0
- package/examples/ball-lab/PROVENANCE.md +4 -0
- package/examples/ball-lab/app.js +33 -0
- package/examples/ball-lab/index.html +56 -0
- package/examples/ball-lab/scene.json +68 -0
- package/examples/crystal-mobile/PROVENANCE.md +4 -0
- package/examples/crystal-mobile/app.js +26 -0
- package/examples/crystal-mobile/index.html +56 -0
- package/examples/crystal-mobile/scene.json +69 -0
- package/examples/football-kick/PROVENANCE.md +4 -0
- package/examples/football-kick/app.js +33 -0
- package/examples/football-kick/index.html +56 -0
- package/examples/football-kick/scene.json +44 -0
- package/examples/gallery.css +379 -0
- package/examples/index.html +109 -0
- package/examples/shared/example.css +320 -0
- package/examples/shared/player.js +85 -0
- package/examples/shoe-splash/PROVENANCE.md +4 -0
- package/examples/shoe-splash/app.js +26 -0
- package/examples/shoe-splash/index.html +56 -0
- package/examples/shoe-splash/scene.json +38 -0
- package/examples/string-touch/PROVENANCE.md +11 -0
- package/examples/string-touch/app.js +79 -0
- package/examples/string-touch/index.html +70 -0
- package/examples/string-touch/scene.json +73 -0
- package/examples/string-touch/styles.css +273 -0
- package/package.json +82 -0
- package/schemas/scene.schema.json +336 -0
- package/scripts/render-demo-videos.sh +77 -0
- package/scripts/serve.js +88 -0
- package/scripts/update-visual-fixtures.mjs +60 -0
- package/scripts/verify-demo-videos.mjs +138 -0
- package/skills/oddlyalive/SKILL.md +68 -0
- package/skills/oddlyalive/agents/openai.yaml +4 -0
- package/skills/oddlyalive/references/object-models.md +25 -0
- package/skills/oddlyalive/references/recipes.md +27 -0
- package/skills/oddlyalive/references/scene-schema.md +84 -0
- package/src/crystal-renderer.js +338 -0
- package/src/gesture.js +58 -0
- package/src/index.js +44 -0
- package/src/rigid-balls.js +304 -0
- package/src/rigid-renderer.js +760 -0
- package/src/rigid-scene.js +223 -0
- package/src/scene-registry.js +17 -0
- package/src/scene.js +206 -0
- package/src/state-hash.js +17 -0
- package/src/strands.js +773 -0
- package/src/surface-wave.js +209 -0
- package/src/svg-renderer.js +348 -0
- package/src/wave-renderer.js +463 -0
- package/src/wave-scene.js +163 -0
- package/tests/cli.test.js +101 -0
- package/tests/determinism.test.js +57 -0
- package/tests/fixtures/visual-baselines.json +27 -0
- package/tests/rigid-balls.test.js +77 -0
- package/tests/scene.test.js +78 -0
- package/tests/surface-wave.test.js +39 -0
- package/tests/visual-fixtures.test.js +43 -0
- package/videos/oddlyalive-demos/BRIEF.md +40 -0
- package/videos/oddlyalive-demos/DEMO-PLAN.md +13 -0
- package/videos/oddlyalive-demos/README.md +45 -0
- package/videos/oddlyalive-demos/app.js +212 -0
- package/videos/oddlyalive-demos/hyperframes.json +9 -0
- package/videos/oddlyalive-demos/index.html +246 -0
- package/videos/oddlyalive-demos/meta.json +5 -0
- package/videos/oddlyalive-demos/package-lock.json +506 -0
- package/videos/oddlyalive-demos/package.json +19 -0
- package/videos/oddlyalive-demos/prepare-assets.mjs +16 -0
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../schemas/scene.schema.json",
|
|
3
|
+
"version": 1,
|
|
4
|
+
"type": "strand-field",
|
|
5
|
+
"name": "OddlyAlive — String Touch",
|
|
6
|
+
"seed": 11,
|
|
7
|
+
"canvas": {
|
|
8
|
+
"width": 960,
|
|
9
|
+
"height": 540
|
|
10
|
+
},
|
|
11
|
+
"timing": {
|
|
12
|
+
"duration": 6.4,
|
|
13
|
+
"fps": 60,
|
|
14
|
+
"substeps": 4,
|
|
15
|
+
"preRoll": 2
|
|
16
|
+
},
|
|
17
|
+
"field": {
|
|
18
|
+
"columns": 23,
|
|
19
|
+
"rows": 16,
|
|
20
|
+
"originX": 330,
|
|
21
|
+
"originY": 112,
|
|
22
|
+
"spacingX": 24,
|
|
23
|
+
"spacingY": 20
|
|
24
|
+
},
|
|
25
|
+
"material": {
|
|
26
|
+
"gravity": 480,
|
|
27
|
+
"linearDrag": 0.92,
|
|
28
|
+
"quadraticDrag": 0.0023,
|
|
29
|
+
"lengthCompliance": 0.0000011,
|
|
30
|
+
"compressionCompliance": 0.00052,
|
|
31
|
+
"bendCompliance": 0.00062,
|
|
32
|
+
"maxStretch": 1.045
|
|
33
|
+
},
|
|
34
|
+
"contact": {
|
|
35
|
+
"radiusX": 53,
|
|
36
|
+
"radiusY": 33,
|
|
37
|
+
"maxStaticGrip": 8,
|
|
38
|
+
"captureStartRow": 6,
|
|
39
|
+
"captureEndRow": 14
|
|
40
|
+
},
|
|
41
|
+
"gesture": {
|
|
42
|
+
"type": "touch-path",
|
|
43
|
+
"points": [
|
|
44
|
+
{ "time": 0.48, "x": -60, "y": 326, "pressure": 0 },
|
|
45
|
+
{ "time": 0.59, "x": 30, "y": 329, "pressure": 0.3 },
|
|
46
|
+
{ "time": 0.74, "x": 265, "y": 338, "pressure": 0.86 },
|
|
47
|
+
{ "time": 1.08, "x": 402, "y": 360, "pressure": 1 },
|
|
48
|
+
{ "time": 1.48, "x": 565, "y": 386, "pressure": 0.98 },
|
|
49
|
+
{ "time": 1.88, "x": 805, "y": 397, "pressure": 1 },
|
|
50
|
+
{ "time": 2.14, "x": 914, "y": 376, "pressure": 0.97 },
|
|
51
|
+
{ "time": 2.28, "x": 944, "y": 367, "pressure": 0.94 },
|
|
52
|
+
{ "time": 2.44, "x": 906, "y": 376, "pressure": 0.96 },
|
|
53
|
+
{ "time": 2.7, "x": 800, "y": 408, "pressure": 0.92 },
|
|
54
|
+
{ "time": 3, "x": 665, "y": 424, "pressure": 0.8 },
|
|
55
|
+
{ "time": 3.29, "x": 520, "y": 416, "pressure": 0.61 },
|
|
56
|
+
{ "time": 3.58, "x": 390, "y": 392, "pressure": 0.34 },
|
|
57
|
+
{ "time": 3.84, "x": 250, "y": 370, "pressure": 0.12 },
|
|
58
|
+
{ "time": 4.08, "x": 120, "y": 356, "pressure": 0.03 },
|
|
59
|
+
{ "time": 4.32, "x": 40, "y": 351, "pressure": 0 }
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
"payload": {
|
|
63
|
+
"text": "ODDLY ALIVE • MAKE ANYTHING FEEL ALIVE • ",
|
|
64
|
+
"fontFamily": "ui-monospace, SFMono-Regular, Menlo, monospace",
|
|
65
|
+
"fontSize": 12
|
|
66
|
+
},
|
|
67
|
+
"render": {
|
|
68
|
+
"background": "#f0e7d3",
|
|
69
|
+
"ink": "#20201d",
|
|
70
|
+
"accent": "#ec5b36",
|
|
71
|
+
"filament": "rgba(32, 32, 29, 0.34)"
|
|
72
|
+
}
|
|
73
|
+
}
|
|
@@ -0,0 +1,273 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
color-scheme: dark;
|
|
3
|
+
font-family:
|
|
4
|
+
Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
|
|
5
|
+
background: #121211;
|
|
6
|
+
color: #f4f0e8;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
* {
|
|
10
|
+
box-sizing: border-box;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
html,
|
|
14
|
+
body {
|
|
15
|
+
margin: 0;
|
|
16
|
+
min-height: 100%;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
body {
|
|
20
|
+
background:
|
|
21
|
+
radial-gradient(circle at 50% 18%, #2c2924 0, transparent 38rem),
|
|
22
|
+
#121211;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
button,
|
|
26
|
+
input {
|
|
27
|
+
font: inherit;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
main {
|
|
31
|
+
width: min(1180px, calc(100vw - 40px));
|
|
32
|
+
margin: 0 auto;
|
|
33
|
+
padding: 28px 0 34px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
header,
|
|
37
|
+
footer {
|
|
38
|
+
display: flex;
|
|
39
|
+
align-items: center;
|
|
40
|
+
justify-content: space-between;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
header {
|
|
44
|
+
min-height: 42px;
|
|
45
|
+
margin-bottom: 22px;
|
|
46
|
+
color: #a9a49a;
|
|
47
|
+
font-size: 12px;
|
|
48
|
+
letter-spacing: 0.11em;
|
|
49
|
+
text-transform: uppercase;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
header p {
|
|
53
|
+
margin: 0;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.wordmark {
|
|
57
|
+
display: inline-flex;
|
|
58
|
+
gap: 10px;
|
|
59
|
+
align-items: center;
|
|
60
|
+
color: #f4f0e8;
|
|
61
|
+
font-size: 14px;
|
|
62
|
+
font-weight: 700;
|
|
63
|
+
letter-spacing: -0.01em;
|
|
64
|
+
text-decoration: none;
|
|
65
|
+
text-transform: none;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.mark {
|
|
69
|
+
width: 13px;
|
|
70
|
+
height: 13px;
|
|
71
|
+
border: 2px solid #ec5b36;
|
|
72
|
+
border-radius: 50%;
|
|
73
|
+
box-shadow: inset 4px 0 0 #ec5b36;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.stage {
|
|
77
|
+
overflow: hidden;
|
|
78
|
+
border: 1px solid #3a3731;
|
|
79
|
+
border-radius: 4px;
|
|
80
|
+
background: #1b1a18;
|
|
81
|
+
box-shadow: 0 30px 90px rgb(0 0 0 / 45%);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.poster {
|
|
85
|
+
position: relative;
|
|
86
|
+
aspect-ratio: 16 / 9;
|
|
87
|
+
overflow: hidden;
|
|
88
|
+
background:
|
|
89
|
+
linear-gradient(rgb(32 32 29 / 2%), rgb(32 32 29 / 2%)),
|
|
90
|
+
#f0e7d3;
|
|
91
|
+
color: #20201d;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.poster::after {
|
|
95
|
+
position: absolute;
|
|
96
|
+
inset: 0;
|
|
97
|
+
z-index: 8;
|
|
98
|
+
pointer-events: none;
|
|
99
|
+
content: "";
|
|
100
|
+
opacity: 0.16;
|
|
101
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E");
|
|
102
|
+
mix-blend-mode: multiply;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.poster-copy {
|
|
106
|
+
position: absolute;
|
|
107
|
+
inset: 35px 40px auto 40px;
|
|
108
|
+
z-index: 4;
|
|
109
|
+
display: flex;
|
|
110
|
+
align-items: flex-start;
|
|
111
|
+
justify-content: space-between;
|
|
112
|
+
pointer-events: none;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.eyebrow {
|
|
116
|
+
margin: 0 0 8px;
|
|
117
|
+
color: #746f65;
|
|
118
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
119
|
+
font-size: 8px;
|
|
120
|
+
font-weight: 700;
|
|
121
|
+
letter-spacing: 0.14em;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
h1 {
|
|
125
|
+
margin: 0;
|
|
126
|
+
font-size: clamp(28px, 3.7vw, 56px);
|
|
127
|
+
font-weight: 900;
|
|
128
|
+
letter-spacing: -0.075em;
|
|
129
|
+
line-height: 0.79;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
h1 em {
|
|
133
|
+
color: #ec5b36;
|
|
134
|
+
font-style: normal;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.caption {
|
|
138
|
+
margin: 0;
|
|
139
|
+
padding-top: 4px;
|
|
140
|
+
color: #746f65;
|
|
141
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
142
|
+
font-size: clamp(7px, 0.8vw, 11px);
|
|
143
|
+
line-height: 1.5;
|
|
144
|
+
text-align: right;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
#motion {
|
|
148
|
+
position: absolute;
|
|
149
|
+
inset: 0;
|
|
150
|
+
z-index: 3;
|
|
151
|
+
display: block;
|
|
152
|
+
width: 100%;
|
|
153
|
+
height: 100%;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.folio {
|
|
157
|
+
position: absolute;
|
|
158
|
+
right: 38px;
|
|
159
|
+
bottom: 28px;
|
|
160
|
+
z-index: 5;
|
|
161
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
162
|
+
font-size: 8px;
|
|
163
|
+
font-weight: 700;
|
|
164
|
+
letter-spacing: 0.18em;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.loading {
|
|
168
|
+
position: absolute;
|
|
169
|
+
right: 38px;
|
|
170
|
+
bottom: 48px;
|
|
171
|
+
z-index: 10;
|
|
172
|
+
padding: 5px 7px;
|
|
173
|
+
background: #20201d;
|
|
174
|
+
color: #f0e7d3;
|
|
175
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
176
|
+
font-size: 8px;
|
|
177
|
+
letter-spacing: 0.12em;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
footer {
|
|
181
|
+
gap: 30px;
|
|
182
|
+
padding: 18px 0 0;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.controls {
|
|
186
|
+
display: flex;
|
|
187
|
+
flex: 1;
|
|
188
|
+
gap: 12px;
|
|
189
|
+
align-items: center;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
button {
|
|
193
|
+
min-width: 96px;
|
|
194
|
+
padding: 8px 10px;
|
|
195
|
+
border: 1px solid #49453e;
|
|
196
|
+
border-radius: 3px;
|
|
197
|
+
background: transparent;
|
|
198
|
+
color: #d8d3c9;
|
|
199
|
+
cursor: pointer;
|
|
200
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
201
|
+
font-size: 9px;
|
|
202
|
+
letter-spacing: 0.09em;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
button:hover {
|
|
206
|
+
border-color: #ec5b36;
|
|
207
|
+
color: #fff;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
input[type="range"] {
|
|
211
|
+
width: min(360px, 36vw);
|
|
212
|
+
accent-color: #ec5b36;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.metrics {
|
|
216
|
+
display: grid;
|
|
217
|
+
grid-template-columns: repeat(4, auto);
|
|
218
|
+
gap: 24px;
|
|
219
|
+
margin: 0;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.metrics div {
|
|
223
|
+
display: grid;
|
|
224
|
+
gap: 3px;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.metrics dt {
|
|
228
|
+
color: #777269;
|
|
229
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
230
|
+
font-size: 8px;
|
|
231
|
+
letter-spacing: 0.12em;
|
|
232
|
+
text-transform: uppercase;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.metrics dd {
|
|
236
|
+
margin: 0;
|
|
237
|
+
color: #d8d3c9;
|
|
238
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
239
|
+
font-size: 10px;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
@media (max-width: 760px) {
|
|
243
|
+
main {
|
|
244
|
+
width: min(100% - 20px, 1180px);
|
|
245
|
+
padding-top: 14px;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
header {
|
|
249
|
+
margin-bottom: 12px;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
header p,
|
|
253
|
+
.caption,
|
|
254
|
+
.metrics {
|
|
255
|
+
display: none;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
footer {
|
|
259
|
+
padding-top: 12px;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.controls {
|
|
263
|
+
width: 100%;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
input[type="range"] {
|
|
267
|
+
width: 100%;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.poster-copy {
|
|
271
|
+
inset: 20px 22px auto;
|
|
272
|
+
}
|
|
273
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "oddlyalive",
|
|
3
|
+
"version": "0.2.0-alpha.2",
|
|
4
|
+
"description": "Deterministic, physics-driven object motion from simple scene recipes.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/thevibefounder/OddlyAlive.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://thevibefounder.com/os/oddlyalive/",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/thevibefounder/OddlyAlive/issues"
|
|
14
|
+
},
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public",
|
|
17
|
+
"tag": "alpha"
|
|
18
|
+
},
|
|
19
|
+
"bin": {
|
|
20
|
+
"oddlyalive": "./bin/oddlyalive.js"
|
|
21
|
+
},
|
|
22
|
+
"exports": {
|
|
23
|
+
".": "./src/index.js",
|
|
24
|
+
"./scene": "./src/scene.js",
|
|
25
|
+
"./strands": "./src/strands.js",
|
|
26
|
+
"./rigid": "./src/rigid-balls.js",
|
|
27
|
+
"./waves": "./src/surface-wave.js"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"assets",
|
|
31
|
+
"bin",
|
|
32
|
+
"docs/ARCHITECTURE.md",
|
|
33
|
+
"docs/DEMO-VIDEOS.md",
|
|
34
|
+
"docs/QUICKSTART.md",
|
|
35
|
+
"docs/ROADMAP.md",
|
|
36
|
+
"examples",
|
|
37
|
+
"schemas",
|
|
38
|
+
"scripts",
|
|
39
|
+
"skills",
|
|
40
|
+
"src",
|
|
41
|
+
"tests",
|
|
42
|
+
"videos/oddlyalive-demos/BRIEF.md",
|
|
43
|
+
"videos/oddlyalive-demos/DEMO-PLAN.md",
|
|
44
|
+
"videos/oddlyalive-demos/README.md",
|
|
45
|
+
"videos/oddlyalive-demos/app.js",
|
|
46
|
+
"videos/oddlyalive-demos/hyperframes.json",
|
|
47
|
+
"videos/oddlyalive-demos/index.html",
|
|
48
|
+
"videos/oddlyalive-demos/meta.json",
|
|
49
|
+
"videos/oddlyalive-demos/package-lock.json",
|
|
50
|
+
"videos/oddlyalive-demos/package.json",
|
|
51
|
+
"videos/oddlyalive-demos/prepare-assets.mjs",
|
|
52
|
+
"CHANGELOG.md",
|
|
53
|
+
"CONTRIBUTING.md",
|
|
54
|
+
"LICENSE",
|
|
55
|
+
"README.md",
|
|
56
|
+
"SECURITY.md"
|
|
57
|
+
],
|
|
58
|
+
"scripts": {
|
|
59
|
+
"start": "node ./bin/oddlyalive.js play",
|
|
60
|
+
"demo": "node ./bin/oddlyalive.js play",
|
|
61
|
+
"inspect": "node ./bin/oddlyalive.js inspect ./examples/string-touch/scene.json",
|
|
62
|
+
"simulate": "node ./bin/oddlyalive.js simulate ./examples/string-touch/scene.json",
|
|
63
|
+
"fixtures:update": "node ./scripts/update-visual-fixtures.mjs",
|
|
64
|
+
"test:visual": "node --test ./tests/visual-fixtures.test.js",
|
|
65
|
+
"demos:render": "sh ./scripts/render-demo-videos.sh",
|
|
66
|
+
"demos:verify": "node ./scripts/verify-demo-videos.mjs",
|
|
67
|
+
"test": "node --test",
|
|
68
|
+
"check": "npm run test && npm run inspect && npm pack --dry-run --cache ./.oddlyalive/npm-cache"
|
|
69
|
+
},
|
|
70
|
+
"engines": {
|
|
71
|
+
"node": ">=20"
|
|
72
|
+
},
|
|
73
|
+
"keywords": [
|
|
74
|
+
"animation",
|
|
75
|
+
"creative-coding",
|
|
76
|
+
"deterministic",
|
|
77
|
+
"motion",
|
|
78
|
+
"physics",
|
|
79
|
+
"svg",
|
|
80
|
+
"xpbd"
|
|
81
|
+
]
|
|
82
|
+
}
|