-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.83 KB
/
package.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
{
"name": "@todesktop/recall",
"version": "1.0.3",
"description": "ToDesktop plugin for Recall.ai Desktop Recording SDK integration",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run sync && rollup -c && npm run generate-types --workspace=packages/plugin && npm run copy-types --workspace=packages/client",
"build:plugin": "rollup -c",
"build:client": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"clean": "npm run clean --workspaces",
"typecheck": "npm run typecheck --workspaces",
"lint": "npm run lint --workspaces",
"release": "npm run build && npm publish --workspaces --access public",
"release:patch": "npm run build && npm run release:patch -ws && npm version patch --force",
"release:minor": "npm run build && npm run release:minor -ws && npm version minor --force",
"release:major": "npm run build && npm run release:major -ws && npm version major --force",
"release:dispatch": "node scripts/dispatch-publish.cjs",
"sync": "cp ./README.md ./packages/client/README.md && cp ./README.md ./packages/plugin/README.md"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"copyfiles": "^2.4.1",
"dts-bundle-generator": "^8.0.0",
"jest": "^29.0.0",
"patch-package": "^8.0.0",
"rollup": "^4.0.0",
"ts-jest": "^29.0.0",
"tslib": "^2.6.2",
"typescript": "^5.0.0"
},
"keywords": [
"todesktop",
"plugin",
"electron",
"recall",
"recording",
"meeting",
"zoom",
"google-meet"
],
"author": "ToDesktop",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ToDesktop/todesktop-recall.git"
}
}