-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.89 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
{
"name": "clip-extractor",
"version": "1.5.1",
"description": "A single-page video player for selecting a frame range and extracting it as an upload-ready payload, built on sleap-io.js and ffmpeg.wasm.",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite --config configs/vite.config.ts",
"build": "tsc --noEmit && vite build --config configs/vite.config.ts",
"preview": "vite preview --config configs/vite.config.ts",
"test": "vitest run --config configs/vitest.config.ts",
"test:watch": "vitest --config configs/vitest.config.ts",
"test:coverage": "vitest run --coverage --config configs/vitest.config.ts",
"test:integration": "playwright test --config configs/playwright.config.ts",
"test:chromatic": "playwright test --config configs/playwright.chromatic.config.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint --config configs/eslint.config.cjs .",
"format": "prettier --config configs/prettier.config.cjs --write .",
"storybook": "storybook dev -p 6006 --config-dir configs/storybook",
"build-storybook": "storybook build --config-dir configs/storybook"
},
"dependencies": {
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@talmolab/sleap-io.js": "^0.5.9",
"h5wasm": "^0.10.3",
"hash-wasm": "^4.12.0",
"mediabunny": "^1.52.3",
"spark-md5": "^3.0.2"
},
"devDependencies": {
"@chromatic-com/playwright": "^0.14.11",
"@eslint/js": "^9.39.5",
"@ffmpeg/core": "^0.12.10",
"@playwright/test": "^1.48.0",
"@storybook/html-vite": "^10.5.3",
"@types/node": "^22.9.0",
"@types/spark-md5": "^3.0.5",
"@vitest/coverage-v8": "^4.1.10",
"chromatic": "^18.0.1",
"eslint": "^9.39.5",
"jsdom": "^25.0.0",
"prettier": "^3.3.0",
"storybook": "^10.5.3",
"typescript": "^5.6.0",
"typescript-eslint": "^8.64.0",
"vite": "^8.1.5",
"vitest": "^4.1.10"
}
}