@aikyroon/app 1.0.0

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 ADDED
@@ -0,0 +1,12 @@
1
+ # @aikyroon/app
2
+
3
+ Installs the **Kyroon Enterprise** desktop App (plus the native Updater).
4
+
5
+ ```bash
6
+ npm install -g @aikyroon/app
7
+ kyroon-app install
8
+ kyroon-app doctor
9
+ kyroon-app uninstall
10
+ ```
11
+
12
+ Powered by `@aikyroon/installer-core`.
package/dist/cli.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ export {};
3
+ //# sourceMappingURL=cli.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":""}
package/dist/cli.js ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env node
2
+ import { runCli } from '@aikyroon/installer-core';
3
+ runCli({
4
+ bin: 'kyroon-app',
5
+ productName: 'Kyroon App',
6
+ cliVersion: '1.0.0',
7
+ description: 'Installs the Kyroon Enterprise desktop App and the native Updater.',
8
+ kind: 'components',
9
+ components: ['app'],
10
+ });
11
+ //# sourceMappingURL=cli.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,MAAM,EAAE,MAAM,0BAA0B,CAAC;AAElD,MAAM,CAAC;IACL,GAAG,EAAE,YAAY;IACjB,WAAW,EAAE,YAAY;IACzB,UAAU,EAAE,OAAO;IACnB,WAAW,EAAE,oEAAoE;IACjF,IAAI,EAAE,YAAY;IAClB,UAAU,EAAE,CAAC,KAAK,CAAC;CACpB,CAAC,CAAC"}
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "@aikyroon/app",
3
+ "version": "1.0.0",
4
+ "description": "Kyroon Enterprise App installer — installs the desktop App and the native Updater.",
5
+ "type": "module",
6
+ "bin": {
7
+ "kyroon-app": "./dist/cli.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "README.md"
12
+ ],
13
+ "engines": {
14
+ "node": ">=22"
15
+ },
16
+ "dependencies": {
17
+ "@aikyroon/installer-core": "^1.0.0"
18
+ },
19
+ "devDependencies": {
20
+ "@types/node": "^22.9.0",
21
+ "typescript": "^5.6.3"
22
+ },
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "keywords": ["kyroon", "app", "installer", "cli"],
27
+ "author": "Kyroon",
28
+ "license": "MIT"
29
+ }