chore: npm init and some dotfiles

This commit is contained in:
Christopher Willis-Ford 2024-03-08 07:41:13 -08:00
parent c64e339db2
commit 1a7ec8337c
4 changed files with 40 additions and 1 deletions

14
.editorconfig Normal file
View file

@ -0,0 +1,14 @@
root = true
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
indent_size = 4
trim_trailing_whitespace = true
[*.js]
indent_style = space
[package.json]
indent_size = 2

1
.gitattributes vendored Normal file
View file

@ -0,0 +1 @@
* text=auto eol=lf

View file

@ -1,2 +1,3 @@
# scratch-webpack-configuration
Centralized configuration for Scratch's use of webpack
Shared configuration for Scratch's use of webpack

23
package.json Normal file
View file

@ -0,0 +1,23 @@
{
"name": "scratch-webpack-configuration",
"version": "1.0.0",
"description": "Shared configuration for Scratch's use of webpack",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scratchfoundation/scratch-webpack-configuration.git"
},
"keywords": [
"Scratch",
"webpack"
],
"author": "Scratch Foundation",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/scratchfoundation/scratch-webpack-configuration/issues"
},
"homepage": "https://github.com/scratchfoundation/scratch-webpack-configuration#readme"
}