-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.52 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
{
"name": "pilo",
"version": "0.0.0-development",
"description": "RPi-powered lights-out management for servers. Remotely control the keyboard, power, and see the screen of a server.",
"bin": "./server/dist/index.js",
"repository": "https://github.com/flotwig/pilo.git",
"homepage": "https://github.com/flotwig/pilo",
"author": "Zach Bloomquist <[email protected]>",
"license": "AGPL-3.0-only",
"private": true,
"workspaces": [
"frontend",
"server",
"common",
"e2e"
],
"files": [
"./frontend/dist",
"./server/dist"
],
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "yarn pack --filename release.tar.gz",
"publishCmd": "npm publish ./release.tar.gz"
}
]
]
},
"scripts": {
"start": "yarn workspace frontend start & yarn workspace server start",
"clean": "yarn workspace frontend clean & yarn workspace server clean",
"build": "yarn workspace frontend build & yarn workspace server build",
"prepack": "yarn clean && yarn build && yarn prepare:pkg",
"prepare:pkg": "node ./prepare-pkg.js",
"postpublish": "rm package.json && mv package.json.bak package.json"
},
"devDependencies": {
"@semantic-release/exec": "^5.0.0",
"semantic-release": "^17.1.1"
}
}