-
Notifications
You must be signed in to change notification settings - Fork 209
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "station-project",
"private": true,
"productName": "Station",
"version": "3.3.0-b1",
"description": "Station",
"homepage": "https://getstation.com",
"author": {
"name": "Joël Charles",
"email": "[email protected]",
"url": "https://github.com/magne4000"
},
"contributors": [],
"license": "Apache License 2.0",
"main": "dist/main.js",
"scripts": {
"build": "yarn workspaces foreach --all --topological run build",
"clean": "yarn workspaces foreach --all run clean && rimraf release",
"release": "yarn clean && yarn workspaces foreach --all --topological run release",
"dev": "yarn workspaces foreach --all --topological run dev",
"lint": "yarn workspaces foreach --all --topological run lint",
"test": "yarn workspaces foreach --all run test"
},
"workspaces": [
"packages/*"
],
"bin": {
"electron": "./node_modules/.bin/electron"
},
"devDependencies": {
"rimraf": "^5.0.10"
},
"devEngines": {
"node": ">=18.0.0",
"yarn": ">=4.1.0"
},
"volta": {
"node": "18.14.0",
"yarn": "4.1.0"
},
"packageManager": "[email protected]"
}