create-spree-app 0.1.0

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/index.js +306 -0
  2. package/package.json +58 -0
package/package.json ADDED
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "create-spree-app",
3
+ "version": "0.1.0",
4
+ "description": "Create a new Spree Commerce project with a single command",
5
+ "type": "module",
6
+ "bin": "./dist/index.js",
7
+ "files": [
8
+ "dist",
9
+ "README.md"
10
+ ],
11
+ "scripts": {
12
+ "build": "tsup",
13
+ "dev": "tsup --watch",
14
+ "test": "vitest run",
15
+ "typecheck": "tsc --noEmit",
16
+ "clean": "rm -rf dist",
17
+ "prepublishOnly": "npm run build"
18
+ },
19
+ "keywords": [
20
+ "spree",
21
+ "commerce",
22
+ "ecommerce",
23
+ "scaffold",
24
+ "create",
25
+ "cli",
26
+ "docker",
27
+ "nextjs",
28
+ "typescript",
29
+ "headless"
30
+ ],
31
+ "author": "Vendo Connect Inc.",
32
+ "license": "MIT",
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "https://github.com/spree/spree.git",
36
+ "directory": "packages/create-spree-app"
37
+ },
38
+ "homepage": "https://spreecommerce.org",
39
+ "bugs": {
40
+ "url": "https://github.com/spree/spree/issues"
41
+ },
42
+ "dependencies": {
43
+ "@clack/prompts": "^0.10.0",
44
+ "commander": "^13.1.0",
45
+ "execa": "^9.5.2",
46
+ "giget": "^2.0.0",
47
+ "picocolors": "^1.1.1"
48
+ },
49
+ "devDependencies": {
50
+ "@types/node": "^20.0.0",
51
+ "tsup": "^8.0.0",
52
+ "typescript": "^5.3.0",
53
+ "vitest": "^4.0.18"
54
+ },
55
+ "engines": {
56
+ "node": ">=20"
57
+ }
58
+ }