forked from kitlangton/visual-effect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.3 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.3 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
{
"name": "visual-effect",
"private": true,
"version": "0.0.0",
"type": "module",
"sideEffects": false,
"license": "MIT",
"description": "Interactive visual state machine for Effect (effect-ts) with a Next.js + React demo and Tone.js sound cues.",
"repository": {
"type": "git",
"url": "https://github.com/kitlangton/visual-effect.git"
},
"homepage": "https://github.com/kitlangton/visual-effect#readme",
"bugs": {
"url": "https://github.com/kitlangton/visual-effect/issues"
},
"author": "Kit Langton",
"keywords": [
"effect",
"effect-ts",
"react",
"nextjs",
"tonejs",
"state-machine",
"visualization",
"typescript"
],
"engines": {
"node": ">=20",
"bun": ">=1.0.0"
},
"scripts": {
"dev": "next dev",
"prebuild": "tsx scripts/generate-og-images.tsx",
"build": "next build",
"start": "next start",
"lint": "biome lint .",
"lint-fix": "biome lint . --apply",
"format": "biome format . --write",
"check": "biome check .",
"check-fix": "biome check . --write",
"preview": "next start",
"test": "vitest",
"typecheck": "tsc --noEmit",
"type-check": "tsc --noEmit",
"generate-og-images": "tsx scripts/generate-og-images.tsx",
"fix": "biome check . --write && bun run typecheck",
"clean": "biome format . --write && biome lint . --write && bun run typecheck",
"verify": "biome check . && bun run typecheck && bun run test",
"ready": "bun run clean && bun run build"
},
"dependencies": {
"@phosphor-icons/react": "^2.1.10",
"@vercel/analytics": "^1.5.0",
"effect": "^3.18.4",
"motion": "^12.23.24",
"next": "^16.0.0",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tone": "^15.1.22"
},
"devDependencies": {
"@biomejs/biome": "2.3.1",
"@effect/language-service": "^0.48.0",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/postcss": "^4.1.16",
"@types/node": "^24.9.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitest/ui": "^4.0.4",
"jsdom": "^27.0.1",
"satori": "^0.18.3",
"tailwindcss": "^4.1.16",
"tsx": "^4.20.6",
"typescript": "~5.9.3",
"vitest": "^4.0.4"
},
"packageManager": "bun@1.3.0",
"trustedDependencies": [
"@tailwindcss/oxide"
]
}