@waelio/cli 0.1.12 → 0.1.13
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/package.json +62 -62
package/package.json
CHANGED
|
@@ -1,63 +1,63 @@
|
|
|
1
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
|
-
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
}
|
|
2
|
+
"name": "@waelio/cli",
|
|
3
|
+
"version": "0.1.13",
|
|
4
|
+
"description": "CLI for building the waelio/siteforge website",
|
|
5
|
+
"author": "Waelio <waelio@waelio.com> (https://waelio.com)",
|
|
6
|
+
"homepage": "https://github.com/waelio/cli#readme",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/waelio/cli.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/waelio/cli/issues"
|
|
13
|
+
},
|
|
14
|
+
"type": "module",
|
|
15
|
+
"bin": {
|
|
16
|
+
"waelio": "dist/index.js"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"ui/dist",
|
|
21
|
+
"README.md",
|
|
22
|
+
"LICENSE"
|
|
23
|
+
],
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=20"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"cli",
|
|
29
|
+
"siteforge",
|
|
30
|
+
"vite",
|
|
31
|
+
"typescript"
|
|
32
|
+
],
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"commander": "^14.0.0",
|
|
36
|
+
"socket.io-client": "^4.8.3",
|
|
37
|
+
"vue": "^3.5.13",
|
|
38
|
+
"vue-router": "^4.5.0"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/node": "^24.0.0",
|
|
42
|
+
"@vitejs/plugin-vue": "^5.2.1",
|
|
43
|
+
"concurrently": "^9.1.2",
|
|
44
|
+
"tsx": "^4.20.0",
|
|
45
|
+
"typescript": "^5.8.3",
|
|
46
|
+
"vite": "^8.0.12",
|
|
47
|
+
"vue-tsc": "^2.2.0"
|
|
48
|
+
},
|
|
49
|
+
"scripts": {
|
|
50
|
+
"clean": "rm -rf dist",
|
|
51
|
+
"build:cli": "tsc -p tsconfig.json && chmod +x dist/index.js",
|
|
52
|
+
"build:ui": "vite build",
|
|
53
|
+
"build": "npm run clean && npm run build:cli && npm run build:ui",
|
|
54
|
+
"dev:cli": "tsx src/index.ts",
|
|
55
|
+
"dev:server": "tsx src/server.ts",
|
|
56
|
+
"dev:ui": "vite",
|
|
57
|
+
"dev": "concurrently -k -n API,UI -c magenta,cyan \"npm:dev:server\" \"npm:dev:ui\"",
|
|
58
|
+
"start": "node dist/server.js",
|
|
59
|
+
"typecheck": "tsc -p tsconfig.json --noEmit && vue-tsc -p tsconfig.ui.json --noEmit",
|
|
60
|
+
"test": "tsx --test src/**/*.test.ts",
|
|
61
|
+
"check": "npm run typecheck && npm run test"
|
|
62
|
+
}
|
|
63
|
+
}
|