-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.21 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@eurobuddha/mini-merch",
"version": "0.5.0",
"description": "Build multi-product Minima blockchain shops with a visual desktop app (macOS/Windows) or CLI. Up to 40 products, shopping cart, encrypted orders, live Minima pricing.",
"main": "src/index.js",
"bin": {
"mini-merch": "./src/index.js"
},
"scripts": {
"studio": "node src/studio.js",
"build:mac": "bash build/build-mac.sh",
"build:win": "bash build/build-win.sh"
},
"pkg": {
"scripts": [
"src/**/*.js"
],
"assets": [
"web/**/*",
"template/**/*"
],
"outputPath": "release"
},
"files": [
"src/",
"template/",
"web/",
"build/"
],
"keywords": [
"minima",
"minidapp",
"blockchain",
"ecommerce",
"shop-builder",
"desktop-app",
"messaging",
"cli",
"macos",
"windows"
],
"author": "eurobuddha",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eurobuddha/miniMerch"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"archiver": "^7.0.1",
"commander": "^12.1.0"
},
"devDependencies": {
"@yao-pkg/pkg": "^6.14.1",
"png-to-ico": "^3.0.1",
"resedit": "^3.0.2"
}
}