-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.83 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
{
"license": "MIT",
"name": "ditherer",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src test scripts vite.config.js",
"typecheck": "tsc --noEmit",
"lint:fix": "eslint src test scripts vite.config.js --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e:wasm": "env -u NO_COLOR -u FORCE_COLOR playwright test test/e2e/wasm.smoke.spec.ts",
"test:e2e:gl": "env -u NO_COLOR -u FORCE_COLOR playwright test test/e2e/gl.smoke.spec.ts",
"check": "npm run lint && npm run typecheck && npm run test:coverage && npm run build",
"test:watch": "vitest",
"bench": "vitest bench test/perf",
"bench:compare": "node test/perf/compareBench.mjs",
"gallery": "npx vite-node scripts/generate-gallery.ts",
"bench:filters": "GALLERY_BENCH_ONLY=1 npx vite-node scripts/generate-gallery.ts",
"report:presets": "npx vite-node scripts/report-preset-similarities.ts"
},
"dependencies": {
"@radix-ui/react-popover": "^1.1.15",
"cmdk": "^1.1.1",
"fflate": "^0.8.2",
"modern-gif": "^2.0.4",
"mp4box": "^2.3.0",
"react": "^19.2.4",
"react-colorful": "^5.6.1",
"react-dom": "^19.2.4",
"web-demuxer": "^4.0.0",
"webm-muxer": "^5.1.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.4",
"canvas": "^3.2.3",
"eslint": "^10.2.0",
"globals": "^17.4.0",
"jsdom": "^29.0.2",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vite": "^8.0.7",
"vitest": "^4.1.3",
"vitest-canvas-mock": "^1.1.4"
}
}