Skip to content

Commit 87ca823

Browse files
committed
v1.0.0
0 parents  commit 87ca823

29 files changed

+4698
-0
lines changed

.gitignore

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# database
12+
/prisma/db.sqlite
13+
/prisma/db.sqlite-journal
14+
15+
# next.js
16+
/.next/
17+
/out/
18+
next-env.d.ts
19+
20+
# production
21+
/build
22+
23+
# misc
24+
.DS_Store
25+
*.pem
26+
27+
# debug
28+
npm-debug.log*
29+
yarn-debug.log*
30+
yarn-error.log*
31+
.pnpm-debug.log*
32+
33+
# local env files
34+
# do not commit any .env files to git, except for the .env.example file. https://create.t3.gg/en/usage/env-variables#using-environment-variables
35+
.env
36+
.env*.local
37+
38+
# vercel
39+
.vercel
40+
41+
# typescript
42+
*.tsbuildinfo

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 charliee
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.

next.config.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/** @type {import("next").NextConfig} */
2+
const config = {
3+
output: "export",
4+
images: {
5+
remotePatterns: [
6+
{
7+
hostname: "raw.githubusercontent.com",
8+
},
9+
],
10+
},
11+
}
12+
13+
export default config

package.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"private": true,
3+
"type": "module",
4+
"version": "1.0.0",
5+
"scripts": {
6+
"build": "next build",
7+
"dev": "next dev",
8+
"lint": "next lint",
9+
"start": "next start"
10+
},
11+
"dependencies": {
12+
"jszip": "^3.10.1",
13+
"next": "^14.0.4",
14+
"react": "18.2.0",
15+
"react-audio-visualize": "^1.1.3",
16+
"react-dom": "18.2.0",
17+
"uuid": "^9.0.1",
18+
"zod": "^3.22.4"
19+
},
20+
"devDependencies": {
21+
"@types/node": "^18.19.3",
22+
"@types/react": "^18.2.43",
23+
"@types/react-dom": "^18.2.17",
24+
"@types/uuid": "^9.0.7",
25+
"autoprefixer": "^10.4.16",
26+
"postcss": "^8.4.32",
27+
"prettier": "^3.1.1",
28+
"prettier-plugin-tailwindcss": "^0.5.9",
29+
"tailwindcss": "^3.3.6",
30+
"typescript": "^5.3.3"
31+
},
32+
"repository": {
33+
"type": "git",
34+
"url": "https://github.com/notcharliee/mcpack"
35+
},
36+
"engines": {
37+
"node": ">20.0.0"
38+
},
39+
"packageManager": "[email protected]"
40+
}

0 commit comments

Comments
 (0)