-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.2 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.2 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
{
"name": "@todesktop/active-win",
"version": "0.20.0",
"description": "",
"private": true,
"workspaces": [
"packages/*"
],
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "rollup -cw",
"build": "npm run sync && rollup -c && npm run build --workspace=@todesktop/plugin-active-win && npm run build --workspace=@todesktop/client-active-win",
"release:minor": "rollup -c && npm run release:minor -ws && npm version minor --force",
"release:major": "rollup -c && npm run release:major -ws && npm version major --force",
"sync": "cp ./README.md ./packages/client/README.md && cp ./README.md ./packages/plugin/README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ToDesktop/plugin-active-win.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ToDesktop/plugin-active-win/issues"
},
"homepage": "https://github.com/ToDesktop/plugin-active-win#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-typescript": "^8.3.0",
"rollup": "^2.58.3",
"rollup-plugin-dts": "^4.0.0",
"typescript": "^4.4.4"
}
}