-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.45 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.45 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
{
"name": "@todesktop/exec",
"version": "0.20.0",
"description": "",
"private": true,
"workspaces": [
"packages/*"
],
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "rollup -cw",
"build": "npm run sync && rollup -c && npm run build --workspace=@todesktop/plugin-exec && npm run build --workspace=@todesktop/client-exec",
"release:patch": "npm run sync && rollup -c && npm run release:patch -ws && npm version patch --force",
"release:minor": "npm run sync && rollup -c && npm run release:minor -ws && npm version minor --force",
"release:major": "npm run sync && rollup -c && npm run release:major -ws && npm version major --force",
"postinstall": "patch-package",
"sync": "cp ./README.md ./packages/client/README.md && cp ./README.md ./packages/plugin/README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ToDesktop/todesktop-exec.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ToDesktop/todesktop-exec/issues"
},
"homepage": "https://github.com/ToDesktop/todesktop-exec#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^29.5.3",
"jest": "^29.6.1",
"patch-package": "^6.4.7",
"rollup": "^2.58.3",
"ts-jest": "^29.1.1",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
}
}