forked from wierkstudio/ciphereditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 1.36 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
{
"name": "@ciphereditor/root",
"author": "Fränz Friederes <[email protected]> (https://fraenz.frieder.es/)",
"private": true,
"workspaces": [
"./packages/*",
"./extensions/*"
],
"scripts": {
"test": "npm run library-build && npm run processor-build && npm run test -ws",
"app-web-build": "npm run library-build && npm run processor-build && npm run build -w @ciphereditor/app-web",
"app-web-start": "npm run start -w @ciphereditor/app-web",
"app-web-preview": "npm run preview -w @ciphereditor/app-web",
"app-desktop-start": "npm run start -w @ciphereditor/app-desktop",
"app-desktop-pack": "npm run app-web-build && npm run pack -w @ciphereditor/app-desktop",
"library-build": "npm run build -w @ciphereditor/library",
"library-watch": "npm run watch -w @ciphereditor/library",
"processor-build": "npm run build -w @ciphereditor/processor",
"processor-watch": "npm run watch -w @ciphereditor/processor",
"extension-codepages-build": "npm run build -w @ciphereditor/extension-codepages",
"extension-essentials-build": "npm run build -w @ciphereditor/extension-essentials",
"extension-essentials-watch": "npm run watch -w @ciphereditor/extension-essentials",
"extension-hash-build": "npm run build -w @ciphereditor/extension-hash",
"extension-pgp-build": "npm run build -w @ciphereditor/extension-pgp"
}
}