@kunver/new 1.1.0 → 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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Burak Unver
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.MD ADDED
@@ -0,0 +1,29 @@
1
+ # Opiniated Project Starter
2
+
3
+ Cli tool for creating new projects with pre-configured settings.
4
+
5
+ ## Using
6
+
7
+ ```bash
8
+ pnpx | npx | bun @kunver/new
9
+ ```
10
+
11
+ ## Starters
12
+
13
+ ### Ready to use
14
+
15
+ ✅ React + TypeScript + Tailwind + Prettierconfig
16
+
17
+ ### Will be added
18
+
19
+ 🟡 Next.js + TypeScript + Tailwind + Prettierconfig
20
+
21
+ 🟡 Wxt + React + TypeScript + Tailwind + Prettierconfig
22
+
23
+ 🟡 Wxt + Svelte + TypeScript + Tailwind + Prettierconfig
24
+
25
+ 🟡 Astro + TypeScript + Tailwind + Prettierconfig
26
+
27
+ 🟡 Cpp + Cmake + bash Scripts
28
+
29
+ 🟡 Golang
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,37 +1,34 @@
1
- {
2
- "name": "@kunver/new",
3
- "version": "1.1.0",
4
- "description": "Opiniated project starter",
5
- "type": "module",
6
- "bin": {
7
- "kunver": "dist/index.js"
8
- },
9
- "main": "dist/index.js",
10
- "files": [
11
- "dist"
12
- ],
13
- "publishConfig": {
14
- "access": "public"
15
- },
16
- "scripts": {
17
- "build": "tsup",
18
- "start": "pnpm run build && node dist/index.js",
19
- "prepublishOnly": "pnpm run build",
20
- "publish": "pnpm run build && npm publish",
21
- "local": "pnpm link --global"
22
- },
23
- "keywords": [],
24
- "author": "Burak Unver <burakhanunver@gmail.com> (https://kunver.dev)",
25
- "license": "ISC",
26
- "packageManager": "pnpm@10.13.1",
27
- "devDependencies": {
28
- "@types/node": "^24.0.13",
29
- "tsup": "^8.2.2",
30
- "typescript": "^5.5.4"
31
- },
32
- "dependencies": {
33
- "@inquirer/prompts": "^7.6.0",
34
- "chalk": "^5.4.1",
35
- "ora": "^8.2.0"
36
- }
37
- }
1
+ {
2
+ "name": "@kunver/new",
3
+ "version": "1.1.1",
4
+ "description": "Opiniated project starter",
5
+ "type": "module",
6
+ "bin": {
7
+ "kunver": "dist/index.js"
8
+ },
9
+ "main": "dist/index.js",
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "publishConfig": {
14
+ "access": "public"
15
+ },
16
+ "keywords": [],
17
+ "author": "Burak Unver <burakhanunver@gmail.com> (https://kunver.dev)",
18
+ "license": "MIT",
19
+ "devDependencies": {
20
+ "@types/node": "^24.0.13",
21
+ "tsup": "^8.2.2",
22
+ "typescript": "^5.5.4"
23
+ },
24
+ "dependencies": {
25
+ "@inquirer/prompts": "^7.6.0",
26
+ "chalk": "^5.4.1",
27
+ "ora": "^8.2.0"
28
+ },
29
+ "scripts": {
30
+ "build": "tsup",
31
+ "start": "pnpm run build && node dist/index.js",
32
+ "local": "pnpm link --global"
33
+ }
34
+ }