@schnebel-crm/cli 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/dist/cli.mjs +4 -7
  2. package/package.json +3 -6
package/dist/cli.mjs CHANGED
@@ -132,15 +132,12 @@ const initCommand = new Command("init").description("Create a new Schnebel CRM i
132
132
  type: "module",
133
133
  private: true,
134
134
  scripts: {
135
- build: "schnebel build",
136
- dev: "schnebel dev",
137
- deploy: "schnebel deploy"
135
+ build: "npx @schnebel-crm/cli build",
136
+ dev: "npx @schnebel-crm/cli dev",
137
+ deploy: "npx @schnebel-crm/cli deploy"
138
138
  },
139
139
  dependencies: { "@schnebel-crm/integration-sdk": "^0.1.0" },
140
- devDependencies: {
141
- "@schnebel-crm/cli": "^0.1.0",
142
- typescript: "^5"
143
- }
140
+ devDependencies: { typescript: "^5" }
144
141
  }, null, 2));
145
142
  await writeFile(join(dir, "tsconfig.json"), JSON.stringify({
146
143
  compilerOptions: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schnebel-crm/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "description": "CLI for building and deploying Schnebel CRM integrations",
6
6
  "main": "./dist/cli.mjs",
@@ -15,18 +15,15 @@
15
15
  },
16
16
  "keywords": ["schnebel", "crm", "integration", "cli"],
17
17
  "license": "MIT",
18
- "repository": {
19
- "type": "git",
20
- "url": "https://github.com/schnebel-it/schnebel-crm"
21
- },
18
+ "homepage": "https://schnebel-crm.de/docs/integrations",
22
19
  "dependencies": {
23
- "@schnebel-crm/integration-sdk": "workspace:^",
24
20
  "commander": "^13.0.0",
25
21
  "esbuild": "^0.25.0",
26
22
  "picocolors": "^1.1.0",
27
23
  "prompts": "^2.4.2"
28
24
  },
29
25
  "devDependencies": {
26
+ "@schnebel-crm/integration-sdk": "workspace:^",
30
27
  "@types/prompts": "^2.4.9",
31
28
  "tsdown": "^0.16.5",
32
29
  "typescript": "^5"