create-soybean 1.0.19 → 1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-soybean",
3
3
  "type": "module",
4
- "version": "1.0.19",
4
+ "version": "1.1.1",
5
5
  "description": "SoybeanJS's command line to create different project templates",
6
6
  "author": {
7
7
  "name": "Soybean",
@@ -36,8 +36,8 @@
36
36
  "devDependencies": {
37
37
  "@types/minimist": "1.2.5",
38
38
  "@types/prompts": "2.4.9",
39
- "tsup": "8.1.0",
40
- "typescript": "5.4.5"
39
+ "tsup": "8.2.4",
40
+ "typescript": "5.5.4"
41
41
  },
42
42
  "scripts": {
43
43
  "build": "pnpm typecheck && pnpm build-only",
@@ -3,7 +3,7 @@
3
3
  "source.fixAll.eslint": "explicit",
4
4
  "source.organizeImports": "never"
5
5
  },
6
- "eslint.experimental.useFlatConfig": true,
6
+ "eslint.useFlatConfig": true,
7
7
  "editor.formatOnSave": false,
8
8
  "eslint.validate": ["json", "jsonc"],
9
9
  "prettier.enable": false
@@ -0,0 +1,3 @@
1
+ import { defineConfig } from '@soybeanjs/eslint-config';
2
+
3
+ export default defineConfig();
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "pnpm-monorepo",
3
3
  "type": "module",
4
- "version": "1.0.19",
4
+ "version": "0.0.0",
5
5
  "private": true,
6
- "packageManager": "pnpm@9.3.0",
6
+ "packageManager": "pnpm@9.9.0",
7
7
  "scripts": {
8
8
  "cleanup": "soy cleanup",
9
9
  "commit": "soy git-commit",
@@ -15,13 +15,13 @@
15
15
  },
16
16
  "dependencies": {},
17
17
  "devDependencies": {
18
- "@soybeanjs/cli": "1.0.19",
19
- "@soybeanjs/eslint-config": "1.3.7",
20
- "eslint": "9.5.0",
21
- "lint-staged": "15.2.7",
18
+ "@soybeanjs/cli": "1.1.1",
19
+ "@soybeanjs/eslint-config": "1.4.1",
20
+ "eslint": "9.10.0",
21
+ "lint-staged": "15.2.10",
22
22
  "simple-git-hooks": "2.11.1",
23
- "tsx": "4.15.5",
24
- "typescript": "5.4.5"
23
+ "tsx": "4.19.0",
24
+ "typescript": "5.5.4"
25
25
  },
26
26
  "simple-git-hooks": {
27
27
  "commit-msg": "pnpm soy git-commit-verify",
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "demo-pkg",
3
3
  "type": "module",
4
- "version": "1.0.19",
4
+ "version": "1.1.1",
5
5
  "private": true,
6
- "packageManager": "pnpm@9.3.0",
6
+ "packageManager": "pnpm@9.9.0",
7
7
  "scripts": {
8
8
  "typecheck": "tsc --noEmit --skipLibCheck"
9
9
  },
10
10
  "dependencies": {},
11
11
  "devDependencies": {
12
- "typescript": "5.4.5"
12
+ "typescript": "5.5.4"
13
13
  }
14
14
  }
@@ -1,24 +1,4 @@
1
1
  {
2
- "compilerOptions": {
3
- "target": "ESNext",
4
- "jsx": "preserve",
5
- "lib": ["DOM", "ESNext"],
6
- "baseUrl": ".",
7
- "module": "ESNext",
8
- "moduleResolution": "node",
9
- "paths": {
10
- "@/*": ["./src/*"]
11
- },
12
- "resolveJsonModule": true,
13
- "types": ["node"],
14
- "strict": true,
15
- "strictNullChecks": true,
16
- "noUnusedLocals": true,
17
- "outDir": "./dist",
18
- "allowSyntheticDefaultImports": true,
19
- "esModuleInterop": true,
20
- "forceConsistentCasingInFileNames": true
21
- },
22
- "include": ["src/**/*"],
23
- "exclude": ["node_modules", "dist"]
2
+ "extends": "../../tsconfig.base.json",
3
+ "include": ["src/**/*"]
24
4
  }
@@ -0,0 +1,24 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ESNext",
4
+ "jsx": "preserve",
5
+ "jsxImportSource": "vue",
6
+ "lib": ["DOM", "ESNext"],
7
+ "baseUrl": ".",
8
+ "module": "ESNext",
9
+ "moduleResolution": "node",
10
+ "paths": {
11
+ "@/*": ["src/*"]
12
+ },
13
+ "resolveJsonModule": true,
14
+ "strict": true,
15
+ "strictNullChecks": true,
16
+ "noImplicitThis": true,
17
+ "noUnusedLocals": false,
18
+ "allowSyntheticDefaultImports": true,
19
+ "esModuleInterop": true,
20
+ "forceConsistentCasingInFileNames": true,
21
+ "isolatedModules": true
22
+ },
23
+ "exclude": ["node_modules", "dist"]
24
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "extends": "./tsconfig.base.json",
3
+ "include": ["./**/*.ts", "./**/*.tsx", "./**/*.vue"]
4
+ }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "template-react",
3
3
  "type": "module",
4
- "version": "1.0.19",
4
+ "version": "0.0.0",
5
5
  "scripts": {}
6
6
  }
@@ -0,0 +1,24 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ESNext",
4
+ "jsx": "preserve",
5
+ "lib": ["DOM", "ESNext"],
6
+ "baseUrl": ".",
7
+ "module": "ESNext",
8
+ "moduleResolution": "node",
9
+ "paths": {
10
+ "@/*": ["./src/*"]
11
+ },
12
+ "resolveJsonModule": true,
13
+ "types": ["node"],
14
+ "strict": true,
15
+ "strictNullChecks": true,
16
+ "noUnusedLocals": true,
17
+ "outDir": "./dist",
18
+ "allowSyntheticDefaultImports": true,
19
+ "esModuleInterop": true,
20
+ "forceConsistentCasingInFileNames": true
21
+ },
22
+ "include": ["src/**/*"],
23
+ "exclude": ["node_modules", "dist"]
24
+ }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "template-react-native",
3
3
  "type": "module",
4
- "version": "1.0.19",
4
+ "version": "0.0.0",
5
5
  "scripts": {}
6
6
  }
@@ -0,0 +1,24 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ESNext",
4
+ "jsx": "preserve",
5
+ "lib": ["DOM", "ESNext"],
6
+ "baseUrl": ".",
7
+ "module": "ESNext",
8
+ "moduleResolution": "node",
9
+ "paths": {
10
+ "@/*": ["./src/*"]
11
+ },
12
+ "resolveJsonModule": true,
13
+ "types": ["node"],
14
+ "strict": true,
15
+ "strictNullChecks": true,
16
+ "noUnusedLocals": true,
17
+ "outDir": "./dist",
18
+ "allowSyntheticDefaultImports": true,
19
+ "esModuleInterop": true,
20
+ "forceConsistentCasingInFileNames": true
21
+ },
22
+ "include": ["src/**/*"],
23
+ "exclude": ["node_modules", "dist"]
24
+ }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "template-solid",
3
3
  "type": "module",
4
- "version": "1.0.19",
4
+ "version": "0.0.0",
5
5
  "scripts": {}
6
6
  }
@@ -0,0 +1,24 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ESNext",
4
+ "jsx": "preserve",
5
+ "lib": ["DOM", "ESNext"],
6
+ "baseUrl": ".",
7
+ "module": "ESNext",
8
+ "moduleResolution": "node",
9
+ "paths": {
10
+ "@/*": ["./src/*"]
11
+ },
12
+ "resolveJsonModule": true,
13
+ "types": ["node"],
14
+ "strict": true,
15
+ "strictNullChecks": true,
16
+ "noUnusedLocals": true,
17
+ "outDir": "./dist",
18
+ "allowSyntheticDefaultImports": true,
19
+ "esModuleInterop": true,
20
+ "forceConsistentCasingInFileNames": true
21
+ },
22
+ "include": ["src/**/*"],
23
+ "exclude": ["node_modules", "dist"]
24
+ }
@@ -3,7 +3,7 @@
3
3
  "source.fixAll.eslint": "explicit",
4
4
  "source.organizeImports": "never"
5
5
  },
6
- "eslint.experimental.useFlatConfig": true,
6
+ "eslint.useFlatConfig": true,
7
7
  "editor.formatOnSave": false,
8
8
  "eslint.validate": ["json", "jsonc"],
9
9
  "prettier.enable": false
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "ts-lib-tsup",
3
3
  "type": "module",
4
- "version": "1.0.19",
4
+ "version": "0.0.0",
5
5
  "private": true,
6
- "packageManager": "pnpm@9.3.0",
6
+ "packageManager": "pnpm@9.9.0",
7
7
  "sideEffects": false,
8
8
  "exports": {
9
9
  ".": {
@@ -31,22 +31,22 @@
31
31
  "dependencies": {
32
32
  "cli-progress": "3.12.0",
33
33
  "consola": "3.2.3",
34
- "dayjs": "1.11.11",
35
- "execa": "9.2.0",
34
+ "dayjs": "1.11.13",
35
+ "execa": "9.3.1",
36
36
  "kolorist": "1.8.0",
37
37
  "ofetch": "1.3.4"
38
38
  },
39
39
  "devDependencies": {
40
- "@soybeanjs/cli": "1.0.19",
41
- "@soybeanjs/eslint-config": "1.3.7",
42
- "@types/cli-progress": "3.11.5",
43
- "@types/node": "20.14.2",
44
- "eslint": "9.5.0",
45
- "lint-staged": "15.2.7",
40
+ "@soybeanjs/cli": "1.1.1",
41
+ "@soybeanjs/eslint-config": "1.4.1",
42
+ "@types/cli-progress": "3.11.6",
43
+ "@types/node": "22.5.4",
44
+ "eslint": "9.10.0",
45
+ "lint-staged": "15.2.10",
46
46
  "simple-git-hooks": "2.11.1",
47
- "tsup": "8.1.0",
48
- "tsx": "4.15.5",
49
- "typescript": "5.4.5"
47
+ "tsup": "8.2.4",
48
+ "tsx": "4.19.0",
49
+ "typescript": "5.5.4"
50
50
  },
51
51
  "simple-git-hooks": {
52
52
  "commit-msg": "pnpm soy git-commit-verify",
@@ -3,7 +3,7 @@
3
3
  "source.fixAll.eslint": "explicit",
4
4
  "source.organizeImports": "never"
5
5
  },
6
- "eslint.experimental.useFlatConfig": true,
6
+ "eslint.useFlatConfig": true,
7
7
  "editor.formatOnSave": false,
8
8
  "eslint.validate": ["json", "jsonc"],
9
9
  "prettier.enable": false
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "ts-lib-unbuild",
3
3
  "type": "module",
4
- "version": "1.0.19",
4
+ "version": "0.0.0",
5
5
  "private": true,
6
- "packageManager": "pnpm@9.3.0",
6
+ "packageManager": "pnpm@9.9.0",
7
7
  "sideEffects": false,
8
8
  "exports": {
9
9
  ".": {
@@ -30,21 +30,21 @@
30
30
  "dependencies": {
31
31
  "cli-progress": "3.12.0",
32
32
  "consola": "3.2.3",
33
- "dayjs": "1.11.11",
34
- "execa": "9.2.0",
33
+ "dayjs": "1.11.13",
34
+ "execa": "9.3.1",
35
35
  "kolorist": "1.8.0",
36
36
  "ofetch": "1.3.4"
37
37
  },
38
38
  "devDependencies": {
39
- "@soybeanjs/cli": "1.0.19",
40
- "@soybeanjs/eslint-config": "1.3.7",
41
- "@types/cli-progress": "3.11.5",
42
- "@types/node": "20.14.2",
43
- "eslint": "9.5.0",
44
- "lint-staged": "15.2.7",
39
+ "@soybeanjs/cli": "1.1.1",
40
+ "@soybeanjs/eslint-config": "1.4.1",
41
+ "@types/cli-progress": "3.11.6",
42
+ "@types/node": "22.5.4",
43
+ "eslint": "9.10.0",
44
+ "lint-staged": "15.2.10",
45
45
  "simple-git-hooks": "2.11.1",
46
- "tsx": "4.15.5",
47
- "typescript": "5.4.5",
46
+ "tsx": "4.19.0",
47
+ "typescript": "5.5.4",
48
48
  "unbuild": "2.0.0"
49
49
  },
50
50
  "simple-git-hooks": {
@@ -4,7 +4,7 @@
4
4
  "source.organizeImports": "never"
5
5
  },
6
6
  "editor.formatOnSave": false,
7
- "eslint.experimental.useFlatConfig": true,
7
+ "eslint.useFlatConfig": true,
8
8
  "eslint.validate": ["html", "css", "json", "jsonc"],
9
9
  "prettier.enable": false
10
10
  }
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "template-vue",
3
3
  "type": "module",
4
- "version": "1.0.19",
4
+ "version": "0.0.0",
5
5
  "private": true,
6
- "packageManager": "pnpm@9.3.0",
6
+ "packageManager": "pnpm@9.9.0",
7
7
  "scripts": {
8
8
  "build": "run-s typecheck build-only",
9
9
  "build-only": "vite build",
@@ -17,24 +17,24 @@
17
17
  "update-pkg": "soy ncu"
18
18
  },
19
19
  "dependencies": {
20
- "pinia": "2.1.7",
21
- "vue": "3.4.29",
22
- "vue-router": "4.3.3"
20
+ "pinia": "2.2.2",
21
+ "vue": "3.5.3",
22
+ "vue-router": "4.4.3"
23
23
  },
24
24
  "devDependencies": {
25
- "@soybeanjs/cli": "1.0.19",
26
- "@soybeanjs/eslint-config": "1.3.7",
27
- "@types/node": "20.14.2",
28
- "@vitejs/plugin-vue": "5.0.5",
29
- "@vitejs/plugin-vue-jsx": "4.0.0",
30
- "eslint": "9.5.0",
31
- "eslint-plugin-vue": "9.26.0",
32
- "lint-staged": "15.2.7",
25
+ "@soybeanjs/cli": "1.1.1",
26
+ "@soybeanjs/eslint-config": "1.4.1",
27
+ "@types/node": "22.5.4",
28
+ "@vitejs/plugin-vue": "5.1.3",
29
+ "@vitejs/plugin-vue-jsx": "4.0.1",
30
+ "eslint": "9.10.0",
31
+ "eslint-plugin-vue": "9.28.0",
32
+ "lint-staged": "15.2.10",
33
33
  "simple-git-hooks": "2.11.1",
34
- "typescript": "5.4.5",
35
- "vite": "5.3.1",
34
+ "typescript": "5.5.4",
35
+ "vite": "5.4.3",
36
36
  "vue-eslint-parser": "9.4.3",
37
- "vue-tsc": "2.0.21"
37
+ "vue-tsc": "2.1.6"
38
38
  },
39
39
  "simple-git-hooks": {
40
40
  "commit-msg": "pnpm soy git-commit-verify",
@@ -0,0 +1,25 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ESNext",
4
+ "jsx": "preserve",
5
+ "jsxImportSource": "vue",
6
+ "lib": ["DOM", "ESNext"],
7
+ "baseUrl": ".",
8
+ "module": "ESNext",
9
+ "moduleResolution": "bundler",
10
+ "paths": {
11
+ "@/*": ["./src/*"]
12
+ },
13
+ "resolveJsonModule": true,
14
+ "types": ["node", "vite/client"],
15
+ "strict": true,
16
+ "strictNullChecks": true,
17
+ "noUnusedLocals": true,
18
+ "outDir": "./dist",
19
+ "allowSyntheticDefaultImports": true,
20
+ "esModuleInterop": true,
21
+ "forceConsistentCasingInFileNames": true,
22
+ "isolatedModules": true
23
+ },
24
+ "exclude": ["node_modules", "dist"]
25
+ }
@@ -1,26 +1,4 @@
1
1
  {
2
- "compilerOptions": {
3
- "target": "ESNext",
4
- "jsx": "preserve",
5
- "jsxImportSource": "vue",
6
- "lib": ["DOM", "ESNext"],
7
- "baseUrl": ".",
8
- "module": "ESNext",
9
- "moduleResolution": "bundler",
10
- "paths": {
11
- "@/*": ["./src/*"]
12
- },
13
- "resolveJsonModule": true,
14
- "types": ["node", "vite/client"],
15
- "strict": true,
16
- "strictNullChecks": true,
17
- "noUnusedLocals": true,
18
- "outDir": "./dist",
19
- "allowSyntheticDefaultImports": true,
20
- "esModuleInterop": true,
21
- "forceConsistentCasingInFileNames": true,
22
- "isolatedModules": true
23
- },
24
- "include": ["./**/*.ts", "./**/*.tsx", "./**/*.vue"],
25
- "exclude": ["node_modules", "dist"]
2
+ "extends": "./tsconfig.base.json",
3
+ "include": ["./**/*.ts", "./**/*.tsx", "./**/*.vue"]
26
4
  }