@saeroon/cli 0.2.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 +283 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +4595 -0
- package/package.json +51 -0
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@saeroon/cli",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Saeroon Hosting developer CLI — preview, validate, and deploy sites & templates",
|
|
5
|
+
"private": false,
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"bin": {
|
|
10
|
+
"saeroon": "./dist/index.js"
|
|
11
|
+
},
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public"
|
|
15
|
+
},
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">=22.0.0"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist/**"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "tsup",
|
|
24
|
+
"dev": "tsup --watch",
|
|
25
|
+
"clean": "rm -rf dist node_modules",
|
|
26
|
+
"lint": "eslint src/",
|
|
27
|
+
"typecheck": "tsc --noEmit",
|
|
28
|
+
"generate:schema": "tsx scripts/generate-json-schema.ts"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"chalk": "^5.4.0",
|
|
32
|
+
"chokidar": "^4.0.0",
|
|
33
|
+
"commander": "^13.0.0",
|
|
34
|
+
"open": "^10.0.0",
|
|
35
|
+
"secure-json-parse": "^3.0.0",
|
|
36
|
+
"ws": "^8.18.0"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@saeroon/tsconfig": "workspace:*",
|
|
40
|
+
"@types/node": "^25.0.3",
|
|
41
|
+
"@types/ws": "^8.5.0",
|
|
42
|
+
"tsup": "^8.3.5",
|
|
43
|
+
"typescript": "~5.9.3"
|
|
44
|
+
},
|
|
45
|
+
"exports": {
|
|
46
|
+
".": {
|
|
47
|
+
"types": "./dist/index.d.ts",
|
|
48
|
+
"import": "./dist/index.js"
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|