velyx 1.0.0 → 1.0.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "velyx",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "CLI to add composable UI components to Laravel projects",
5
5
  "author": "",
6
6
  "license": "MIT",
@@ -32,7 +32,6 @@
32
32
  "dependencies": {
33
33
  "@clack/prompts": "^0.11.0",
34
34
  "chalk": "^5.6.2",
35
- "changeset": "^0.2.6",
36
35
  "cli-table3": "^0.6.5",
37
36
  "commander": "^14.0.2",
38
37
  "fs-extra": "^11.3.3",
@@ -40,11 +39,13 @@
40
39
  "log-symbols": "^7.0.1",
41
40
  "ora": "^9.1.0",
42
41
  "prompts": "^2.4.2",
42
+ "velyx": "link:../../../../.local/share/pnpm/global/5/node_modules/velyx",
43
43
  "vite-tsconfig-paths": "^6.0.5",
44
44
  "zod": "^3.24.1",
45
45
  "zod-to-json-schema": "^3.24.6"
46
46
  },
47
47
  "devDependencies": {
48
+ "@changesets/cli": "^2.29.8",
48
49
  "@eslint/js": "^9.39.2",
49
50
  "@eslint/json": "^0.14.0",
50
51
  "@eslint/markdown": "^7.5.1",
@@ -52,6 +53,7 @@
52
53
  "@types/node": "^25.0.9",
53
54
  "@types/prompts": "^2.4.9",
54
55
  "@vitest/coverage-v8": "^4.0.18",
56
+ "cross-env": "^10.1.0",
55
57
  "eslint": "^9.39.2",
56
58
  "globals": "^17.0.0",
57
59
  "jiti": "^2.6.1",
@@ -64,10 +66,11 @@
64
66
  "vitest": "^4.0.18"
65
67
  },
66
68
  "scripts": {
67
- "build": "tsup",
69
+ "build:dev": "cross-env NODE_ENV=development VELYX_REGISTRY_URL=http://velyx.test/api/v1 tsup",
70
+ "build": "cross-env NODE_ENV=production VELYX_REGISTRY_URL=https://registry.velyx.dev/api/v1 tsup",
68
71
  "check:ci": "pnpm run lint && pnpm run typecheck",
69
72
  "clean": "rimraf dist",
70
- "dev": "tsup --watch",
73
+ "dev": "cross-env NODE_ENV=development VELYX_REGISTRY_URL=http://velyx.test/api/v1 tsup --watch",
71
74
  "check": "pnpm run format:write && eslint --fix",
72
75
  "format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
73
76
  "format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
@@ -77,6 +80,7 @@
77
80
  "pub:release": "pnpm build && pnpm publish --access public",
78
81
  "release": "changeset version",
79
82
  "start": "node dist/index.js",
83
+ "start:dev": "cross-env NODE_ENV=development VELYX_REGISTRY_URL=http://velyx.test/api/v1 node dist/index.js",
80
84
  "test": "vitest run",
81
85
  "test:coverage": "vitest run --coverage",
82
86
  "test:watch": "vitest",