-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.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
{
"name": "web-recorder",
"version": "0.6.0",
"author": "minung.han <hmu332233@gmail.com>",
"license": "MIT",
"scripts": {
"start:client": "parcel src/client/index.html",
"build:client": "EXTENSION_MODE=true parcel build src/client/index.html --dist-dir dist",
"build:extension": "parcel build src/extensions/index.ts --dist-dir dist_extension",
"build:prd": "rm -rf dist_extension; yarn build:extension; cp whale/index.html dist_extension/index.html; cp whale/manifest.json dist_extension/manifest.json; cp whale/icon.png dist_extension/icon.png; cp src/extensions/background.js dist_extension/background.js"
},
"devDependencies": {
"@parcel/packager-ts": "^2.12.0",
"@parcel/transformer-typescript-tsc": "^2.15.4",
"@parcel/transformer-typescript-types": "^2.12.0",
"@types/chrome": "^0.0.158",
"@types/dom-mediacapture-record": "^1.0.10",
"@types/node": "^18.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"parcel": "^2.12.0",
"postcss": "^8.5.6",
"postcss-modules": "^6.0.1",
"typescript": "^5.0.0"
},
"dependencies": {
"@ffmpeg/core": "^0.12.6",
"@ffmpeg/ffmpeg": "^0.12.10",
"@ffmpeg/util": "^0.12.2",
"classnames": "^2.5.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}