-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathpackage.json
70 lines (70 loc) · 2.89 KB
/
package.json
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
{
"name": "pear-rec",
"version": "1.4.0",
"description": " pear-rec is a cross platform software with screenshot, screen recording, audio recording and video recording.",
"scripts": {
"start:desktop": "concurrently --names \"WEB,DESKTOP\" -c \"red,blue\" \"npm run dev:web\" \"wait-on tcp:0.0.0.0:9191 && pnpm run dev:desktop\"",
"dev:desktop": "pnpm run -C packages/desktop dev",
"build:desktop": "pnpm run -C packages/desktop build && pnpm run copy:web && pnpm run -C packages/desktop build:win",
"copy:web": "pnpm run -C packages/web build && node tools/copy-files-web2desktop.js",
"copy:server": "pnpm run -C packages/server build && node tools/copy-files-server2desktop.js",
"dev:web": "pnpm run -C packages/web dev",
"build:web": "pnpm run -C packages/web build",
"only-build:web": "pnpm run -C packages/web build",
"watch:web": "pnpm run -C packages/web watch",
"project:web": "pnpm run -C packages/web build && node tools/copy-files-web2server.js",
"dev:server": "pnpm run -C packages/server dev",
"build:server": "pnpm run -C packages/server build",
"dev:docs": "pnpm run -C packages/docs dev",
"build:docs": "pnpm run -C packages/docs build",
"preview:docs": "pnpm run -C packages/docs preview",
"deploy:docs": "pnpm run -C packages/docs deploy",
"dev:timer": "pnpm run -C packages/timer dev",
"build:timer": "pnpm run -C packages/timer build",
"watch:timer": "pnpm run -C packages/timer watch",
"dev:recorder": "pnpm run -C packages/recorder dev",
"build:recorder": "pnpm run -C packages/recorder build",
"watch:recorder": "pnpm run -C packages/recorder watch",
"dev:screenshot": "pnpm run -C packages/screenshot dev",
"build:screenshot": "pnpm run -C packages/screenshot build",
"watch:screenshot": "pnpm run -C packages/screenshot watch",
"clear": "concurrently --names \"SERVER,WEB,DESKTOP\" \"pnpm run -C packages/web clear\" \"pnpm run -C packages/server clear\" \"pnpm run -C packages/desktop clear\"",
"copy": "node tools/copy-web-files.js",
"changeset": "changeset",
"vp": "changeset version",
"commit": "cz"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@umijs/fabric": "^4.0.1",
"commitizen": "^4.3.0",
"concurrently": "^8.2.1",
"cz-conventional-changelog": "^3.3.0",
"typescript": "^5.2.2",
"wait-on": "^7.2.0"
},
"keywords": [
"electron",
"react",
"antd",
"aplayer",
"plyr",
"viewerjs",
"tui-image-editor",
"react-screenshots",
"react-timer-hook",
"webav",
"gif.js"
],
"author": "027xiguapi <458813868@qq.com>",
"homepage": "https://027xiguapi.github.io/pear-rec",
"repository": {
"type": "git",
"url": "git@github.com:027xiguapi/pear-rec.git"
},
"bugs": {
"url": "https://github.com/027xiguapi/pear-rec/issues"
},
"license": "Apache-2.0"
}