-
Notifications
You must be signed in to change notification settings - Fork 228
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.59 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
{
"name": "@webav/av-canvas",
"version": "1.2.0",
"private": false,
"repository": "https://github.com/WebAV-Tech/WebAV",
"keywords": [
"webcodecs",
"canvas",
"video",
"video edit",
"audio",
"音视频",
"cliper",
"流媒体",
"recorder"
],
"type": "module",
"types": "dist/av-canvas.d.ts",
"module": "dist/av-canvas.js",
"main": "dist/av-canvas.umd.cjs",
"exports": {
".": {
"types": "./dist/av-canvas.d.ts",
"import": "./dist/av-canvas.js",
"require": "dist/av-canvas.umd.cjs"
}
},
"scripts": {
"dev": "vite demo --config vite.config.ts",
"test": "vitest",
"ci:test": "vitest run",
"test:coverage": "vitest run --coverage",
"build": "vite build",
"build:api": "typedoc src/index.ts --out ../../doc-site/public/_api/av-canvas --skipErrorChecking --exclude '**/demo/**'",
"build:api:watch": "typedoc src/index.ts --out ../../doc-site/public/_api/av-canvas --watch --skipErrorChecking --exclude '**/demo/**'",
"prepublishOnly": "pnpm build",
"preview": "vite preview"
},
"files": [
"dist"
],
"devDependencies": {
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@webav/av-recorder": "workspace:*",
"@xzdarcy/react-timeline-editor": "^0.1.9",
"autoprefixer": "^10.4.19",
"esbuild-plugin-react-virtualized": "^1.0.5",
"opfs-tools": "^0.7.2",
"postcss": "^8.4.38",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.3"
},
"dependencies": {
"@webav/av-cliper": "workspace:*",
"@webav/internal-utils": "workspace:*"
}
}