cuy-undc 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +39 -0
- package/dist/desktop/renderer/README.md +2 -0
- package/package.json +8 -1
package/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# cuy-undc
|
|
2
|
+
|
|
3
|
+
Mascota de escritorio para estudiantes de Sistemas de la UNDC.
|
|
4
|
+
|
|
5
|
+
Web oficial: https://www.cuy-undc.net.pe
|
|
6
|
+
|
|
7
|
+
## Instalar
|
|
8
|
+
|
|
9
|
+
Sin instalación global:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npx cuy-undc
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Instalación global:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install -g cuy-undc
|
|
19
|
+
cuy-undc
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Qué hace
|
|
23
|
+
|
|
24
|
+
`cuy-undc` lanza la app de escritorio de Cuy UNDC usando Electron.
|
|
25
|
+
|
|
26
|
+
## Requisitos
|
|
27
|
+
|
|
28
|
+
- Node.js 18 o superior
|
|
29
|
+
- Linux, macOS o Windows
|
|
30
|
+
|
|
31
|
+
## Notas
|
|
32
|
+
|
|
33
|
+
En Linux, el CLI arranca Electron con `--no-sandbox` cuando se ejecuta desde
|
|
34
|
+
`npx`, para evitar el problema de permisos de `chrome-sandbox` en directorios
|
|
35
|
+
temporales.
|
|
36
|
+
|
|
37
|
+
## Licencia
|
|
38
|
+
|
|
39
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cuy-undc",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "CLI que despierta a Cuy UNDC en tu escritorio",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"electron",
|
|
8
|
+
"desktop-pet",
|
|
9
|
+
"cli",
|
|
10
|
+
"undc"
|
|
11
|
+
],
|
|
5
12
|
"bin": {
|
|
6
13
|
"cuy-undc": "dist/index.js"
|
|
7
14
|
},
|