samplex 0.1.1

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 ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "samplex",
3
+ "version": "0.1.1",
4
+ "description": "Deploy static sites to shareable preview URLs from the command line",
5
+ "homepage": "https://sample.app",
6
+ "license": "Apache-2.0",
7
+ "author": "Genmod",
8
+ "bin": {
9
+ "samplex": "./dist/index.js"
10
+ },
11
+ "files": [
12
+ "dist",
13
+ "README.md",
14
+ "LICENSE"
15
+ ],
16
+ "type": "module",
17
+ "scripts": {
18
+ "build": "tsup src/index.ts --dts",
19
+ "check-types": "tsc --noEmit",
20
+ "dev": "tsup src/index.ts --watch",
21
+ "test": "vitest run"
22
+ },
23
+ "dependencies": {
24
+ "chalk": "^5.3.0",
25
+ "commander": "^13.0.0",
26
+ "open": "^10.0.0",
27
+ "ora": "^8.0.0",
28
+ "tar": "^7.0.0"
29
+ },
30
+ "devDependencies": {
31
+ "@sample/config": "workspace:*",
32
+ "@sample/tests": "workspace:*",
33
+ "tsup": "^8.0.0",
34
+ "typescript": "catalog:",
35
+ "vitest": "^4.0.18"
36
+ }
37
+ }