diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000000..6e1d60dce1 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,93 @@ +{ + "name": "gitignore", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "gitignore", + "version": "1.0.0", + "license": "CC0-1.0", + "dependencies": { + "@vercel/analytics": "^2.0.1", + "@vercel/speed-insights": "^1.0.15" + } + }, + "node_modules/@vercel/analytics": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@vercel/analytics/-/analytics-2.0.1.tgz", + "integrity": "sha512-MTQG6V9qQrt1tsDeF+2Uoo5aPjqbVPys1xvnIftXSJYG2SrwXRHnqEvVoYID7BTruDz4lCd2Z7rM1BdkUehk2g==", + "license": "MIT", + "peerDependencies": { + "@remix-run/react": "^2", + "@sveltejs/kit": "^1 || ^2", + "next": ">= 13", + "nuxt": ">= 3", + "react": "^18 || ^19 || ^19.0.0-rc", + "svelte": ">= 4", + "vue": "^3", + "vue-router": "^4" + }, + "peerDependenciesMeta": { + "@remix-run/react": { + "optional": true + }, + "@sveltejs/kit": { + "optional": true + }, + "next": { + "optional": true + }, + "nuxt": { + "optional": true + }, + "react": { + "optional": true + }, + "svelte": { + "optional": true + }, + "vue": { + "optional": true + }, + "vue-router": { + "optional": true + } + } + }, + "node_modules/@vercel/speed-insights": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@vercel/speed-insights/-/speed-insights-1.3.1.tgz", + "integrity": "sha512-PbEr7FrMkUrGYvlcLHGkXdCkxnylCWePx7lPxxq36DNdfo9mcUjLOmqOyPDHAOgnfqgGGdmE3XI9L/4+5fr+vQ==", + "license": "Apache-2.0", + "peerDependencies": { + "@sveltejs/kit": "^1 || ^2", + "next": ">= 13", + "react": "^18 || ^19 || ^19.0.0-rc", + "svelte": ">= 4", + "vue": "^3", + "vue-router": "^4" + }, + "peerDependenciesMeta": { + "@sveltejs/kit": { + "optional": true + }, + "next": { + "optional": true + }, + "react": { + "optional": true + }, + "svelte": { + "optional": true + }, + "vue": { + "optional": true + }, + "vue-router": { + "optional": true + } + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000000..e54b672627 --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "name": "gitignore", + "version": "1.0.0", + "description": "A collection of .gitignore templates", + "private": true, + "scripts": { + "build": "echo 'No build needed for static site'", + "dev": "npx serve public", + "lint": "echo 'No linting configured'" + }, + "repository": { + "type": "git", + "url": "https://github.com/hanayimmee/gitignore" + }, + "license": "CC0-1.0", + "dependencies": { + "@vercel/analytics": "^2.0.1", + "@vercel/speed-insights": "^1.0.15" + } +} diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000000..6444c3510c --- /dev/null +++ b/public/index.html @@ -0,0 +1,110 @@ + + + + + + + gitignore - A collection of .gitignore templates + + + +
+

🎯 gitignore

+

A collection of useful .gitignore templates for various programming languages and frameworks.

+
+ +
+

About This Project

+

+ This is GitHub's collection of .gitignore file templates. + We use this list to populate the .gitignore template choosers available + in the GitHub.com interface when creating new repositories and files. +

+ +

Quick Links

+

+ + View on GitHub + +

+ +

Resources

+ +
+ + + + + + + + + + + + diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000000..d636906fc8 --- /dev/null +++ b/vercel.json @@ -0,0 +1,25 @@ +{ + "version": 2, + "public": true, + "cleanUrls": true, + "trailingSlash": false, + "headers": [ + { + "source": "/(.*)", + "headers": [ + { + "key": "X-Content-Type-Options", + "value": "nosniff" + }, + { + "key": "X-Frame-Options", + "value": "DENY" + }, + { + "key": "X-XSS-Protection", + "value": "1; mode=block" + } + ] + } + ] +}