@vc-shell/create-vc-app 2.0.0-alpha.1 → 2.0.0-alpha.3

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/dist/index.js CHANGED
@@ -7,7 +7,7 @@ import { fileURLToPath as B } from "node:url";
7
7
  import A from "prompts";
8
8
  import r from "node:fs";
9
9
  import T from "ejs";
10
- const F = "2.0.0-alpha.1", O = {
10
+ const F = "2.0.0-alpha.3", O = {
11
11
  version: F
12
12
  };
13
13
  function f(e) {
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "devDependencies": {
12
12
  "@types/node": "^20.10.5",
13
- "@vc-shell/ts-config": "^2.0.0-alpha.1",
13
+ "@vc-shell/ts-config": "^2.0.0-alpha.3",
14
14
  "cross-env": "^7.0.3",
15
15
  "sass": "^1.87.0",
16
16
  "typescript": "^5.8.3",
@@ -18,8 +18,8 @@
18
18
  "vue-tsc": "^2.2.10"
19
19
  },
20
20
  "dependencies": {
21
- "@vc-shell/config-generator": "^2.0.0-alpha.1",
22
- "@vc-shell/framework": "^2.0.0-alpha.1",
21
+ "@vc-shell/config-generator": "^2.0.0-alpha.3",
22
+ "@vc-shell/framework": "^2.0.0-alpha.3",
23
23
  "vue": "^3.5.13",
24
24
  "vue-router": "^4.2.5"
25
25
  }
@@ -22,9 +22,9 @@
22
22
  "@types/node": "^20.10.5",
23
23
  "@typescript-eslint/eslint-plugin": "^7.4.0",
24
24
  "@typescript-eslint/parser": "^7.4.0",
25
- "@vc-shell/api-client-generator": "^2.0.0-alpha.1",
26
- "@vc-shell/release-config": "^2.0.0-alpha.1",
27
- "@vc-shell/ts-config": "^2.0.0-alpha.1",
25
+ "@vc-shell/api-client-generator": "^2.0.0-alpha.3",
26
+ "@vc-shell/release-config": "^2.0.0-alpha.3",
27
+ "@vc-shell/ts-config": "^2.0.0-alpha.3",
28
28
  "@vitejs/plugin-vue": "^5.2.3",
29
29
  "@vue/eslint-config-prettier": "^9.0.0",
30
30
  "@vue/eslint-config-typescript": "^13.0.0",
@@ -52,8 +52,8 @@
52
52
  "vue-tsc": "^2.2.10"
53
53
  },
54
54
  "dependencies": {
55
- "@vc-shell/config-generator": "^2.0.0-alpha.1",
56
- "@vc-shell/framework": "^2.0.0-alpha.1",
55
+ "@vc-shell/config-generator": "^2.0.0-alpha.3",
56
+ "@vc-shell/framework": "^2.0.0-alpha.3",
57
57
  "@vueuse/core": "^10.7.1",
58
58
  "@vueuse/integrations": "^10.7.1",
59
59
  "cross-spawn": "^7.0.3",
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "<%- PackageName %>",
3
+ "version": "0.0.0",
4
+ "private": true,
5
+ "scripts": {
6
+ "serve": "cross-env APP_ENV=development vite --force",
7
+ "preview": "vite preview",
8
+ "build": "yarn build:app && yarn build:types",
9
+ "build:app": "cross-env APP_ENV=production vite build",
10
+ "build:types": "vue-tsc --declaration --emitDeclarationOnly --outDir dist/types",
11
+ "type-check": "vue-tsc --noEmit",
12
+ "lint-staged": "lint-staged",
13
+ "lint": "eslint --fix --cache '**/*.{ts,vue}'",
14
+ "generate-api-client": "cross-env api-client-generator --APP_PLATFORM_MODULES='[]' --APP_API_CLIENT_DIRECTORY=./src/api_client/ --APP_OUT_DIR=dist --APP_PACKAGE_NAME=api --APP_PACKAGE_VERSION=$npm_package_version"
15
+ },
16
+ "devDependencies": {
17
+ "@commitlint/cli": "^18.4.3",
18
+ "@commitlint/config-conventional": "^18.4.3",
19
+ "@laynezh/vite-plugin-lib-assets": "^0.5.13",
20
+ "@rollup/plugin-typescript": "^11.1.5",
21
+ "@types/lodash-es": "^4.17.12",
22
+ "@types/node": "^20.10.5",
23
+ "@typescript-eslint/eslint-plugin": "^7.4.0",
24
+ "@typescript-eslint/parser": "^7.4.0",
25
+ "@vc-shell/api-client-generator": "^2.0.0-alpha.3",
26
+ "@vc-shell/release-config": "^2.0.0-alpha.3",
27
+ "@vc-shell/ts-config": "^2.0.0-alpha.3",
28
+ "@vitejs/plugin-vue": "^5.2.3",
29
+ "@vue/eslint-config-prettier": "^9.0.0",
30
+ "@vue/eslint-config-typescript": "^13.0.0",
31
+ "autoprefixer": "^10.4.16",
32
+ "conventional-changelog-cli": "^5.0.0",
33
+ "cross-env": "^7.0.3",
34
+ "eslint": "^8.57.0",
35
+ "eslint-import-resolver-typescript": "^3.6.1",
36
+ "eslint-plugin-import": "^2.29.1",
37
+ "eslint-plugin-prettier": "^5.1.3",
38
+ "eslint-plugin-vue": "^9.19.2",
39
+ "husky": "^8.0.3",
40
+ "lint-staged": "^15.2.0",
41
+ "lodash-es": "^4.17.21",
42
+ "postcss": "^8.4.32",
43
+ "prettier": "^3.1.1",
44
+ "sass": "^1.87.0",
45
+ "tailwindcss": "^3.4.0",
46
+ "tsx": "^4.7.1",
47
+ "typescript": "^5.8.3",
48
+ "vite": "^6.3.3",
49
+ "vite-plugin-checker": "^0.9.1",
50
+ "vite-plugin-mkcert": "^1.17.1",
51
+ "vue-eslint-parser": "^9.3.2",
52
+ "vue-tsc": "^2.2.10"
53
+ },
54
+ "dependencies": {
55
+ "@vc-shell/config-generator": "^2.0.0-alpha.3",
56
+ "@vc-shell/framework": "^2.0.0-alpha.3",
57
+ "@vueuse/core": "^10.7.1",
58
+ "@vueuse/integrations": "^10.7.1",
59
+ "cross-spawn": "^7.0.3",
60
+ "moment": "^2.30.1",
61
+ "vee-validate": "^4.12.4",
62
+ "vue": "^3.5.13",
63
+ "vue-router": "^4.2.5"
64
+ },
65
+ "lint-staged": {
66
+ "*.{js,ts,html,css}": "prettier --write '**/*.{ts,vue}'",
67
+ "*.{js,ts,vue}": "eslint --fix --cache '**/*.{ts,vue}'"
68
+ },
69
+ "packageManager": "yarn@4.9.1"
70
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vc-shell/create-vc-app",
3
3
  "description": "Application scaffolding",
4
- "version": "2.0.0-alpha.1",
4
+ "version": "2.0.0-alpha.3",
5
5
  "type": "module",
6
6
  "bin": "./dist/index.js",
7
7
  "files": [
@@ -15,7 +15,7 @@
15
15
  "devDependencies": {
16
16
  "@types/ejs": "^3.1.5",
17
17
  "@types/prompts": "^2.4.4",
18
- "@vc-shell/ts-config": "2.0.0-alpha.1",
18
+ "@vc-shell/ts-config": "2.0.0-alpha.3",
19
19
  "copyfiles": "^2.4.1",
20
20
  "cross-env": "^7.0.3",
21
21
  "shx": "^0.3.4",
@@ -35,5 +35,5 @@
35
35
  "access": "public",
36
36
  "registry": "https://registry.npmjs.org/"
37
37
  },
38
- "gitHead": "174beeef16d0f9c7d6a5b96f0cc375bc50eb06d2"
38
+ "gitHead": "23e82c2423efb5cddf8ea891ea5d5e84832a6acd"
39
39
  }