-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.24 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.24 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "setmanager",
"version": "1.0.0",
"description": "Intelligent setlist generator for live musicians - Band Edition",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/julesklord/SetListBuilder.git"
},
"homepage": "https://github.com/julesklord/SetListBuilder#readme",
"keywords": [
"setlist",
"music",
"band",
"generator",
"algorithm",
"javascript",
"offline"
],
"author": "Fearlessly Media Group",
"contributors": [
{
"name": "GitHub Copilot",
"role": "v2.0 implementation & testing"
}
],
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"dev": "python -m http.server 8000",
"test": "node tests/run-tests.js",
"validate": "node tests/run-tests.js"
},
"browserslist": [
">= 1%",
"last 2 versions",
"not dead"
],
"features": {
"songs": 336,
"genres": 24,
"instruments": 11,
"languages": 4,
"exportFormats": [
"PDF",
"HTML",
"JSON",
"CSV",
"Plain Text"
]
},
"specifications": {
"type": "Vanilla JavaScript (No Dependencies)",
"framework": "None (Plain JS + HTML + CSS)",
"storage": "localStorage (100% offline)",
"persistence": "Browser-based",
"accessibility": "WCAG 2.1 AA target",
"responsiveness": "Mobile-first design"
},
"releases": {
"v1.0.0": {
"date": "2026-03-29",
"status": "official-release",
"breaking_changes": false,
"major_features": [
"First Stable Release",
"PWA Support & Offline-first",
"SEO & Metadata Optimized",
"3-pass Energy Balancing Algorithm",
"Storage Quota/Overflow System",
"Schema Validation (Songs)"
],
"bug_fixes": 25,
"performance_improvements": 10
}
},
"documentation": {
"quick_start": "docs/QUICK_START.md",
"user_guide": "docs/GUIDE.md",
"technical_reference": "docs/FMG_Setlist_Builder_Docs.md",
"changelog": "CHANGELOG.md",
"release_notes": "RELEASE_NOTES.md",
"testing_guide": "tests/TESTING_GUIDE.md",
"testing_results": "tests/TEST_RESULTS.md"
},
"testing": {
"automated": "tests/validation-script.js",
"manual": "tests/TESTING_GUIDE.md",
"coverage": 12,
"unit_tests": "Integrated in validation-script.js",
"e2e_tests": "See TESTING_GUIDE.md (7 scenarios)"
},
"deployment": {
"local_dev": "python -m http.server 8000",
"github_pages": "Push to main branch, enable in Settings → Pages",
"supported_browsers": [
"Chrome 90+",
"Firefox 88+",
"Safari 14+",
"Edge 90+"
]
},
"contributing": {
"guidelines": "See CONTRIBUTING.md (if created)",
"code_style": "Vanilla JS, ES6+, 80-100 char lines",
"commit_format": "Conventional Commits",
"pull_requests": "Welcome - create issue first"
},
"dependencies": {
"runtime": "None (zero dependencies)",
"development": "None (zero dependencies)"
},
"devDependencies": {},
"keywords_related": [
"music-generation",
"live-performance",
"band-management",
"setlist-creator",
"music-algorithm",
"offline-first",
"progressive-web-app"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/setmanager"
}
}