Skip to content

Commit

Permalink
adding placeholder package.json and gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
HannesAlexandersson committed Aug 31, 2024
1 parent adb39da commit c7431fa
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Node.js
node_modules/

# Build outputs
dist/
build/

# Dependency directories
bower_components/

# Logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# VSCode
.vscode/

# IntelliJ IDEA
.idea/

# Sublime Text
*.sublime-workspace
*.sublime-project

# macOS
.DS_Store

# Windows
Thumbs.db

# Environment variables
.env

# Other secrets
secrets.yml

# Temporary files
*.tmp
*.swp
*.bak
*.log
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ignore-scripts=true
12 changes: 12 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "simple-web-components-library",
"version": "1.0.0",
"description": "This is an open-source collection of reusable web components built using HTML, CSS, and JavaScript. The goal is to provide a library of customizable components for developers to use in their projects and to encourage developers to contribute to open source. Contributors are welcome to submit their own components!",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC"
}

0 comments on commit c7431fa

Please sign in to comment.