Separating code into files.

Bundling the code with node.
Adding some neccesary files.
This commit is contained in:
2022-07-05 20:09:49 +02:00
parent 62825829e2
commit 73ae583881
8 changed files with 7898 additions and 171 deletions

24
package.json Normal file
View File

@ -0,0 +1,24 @@
{
"type": "module",
"scripts": {
"bundle": "node bundler.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Midefos/idealista-enhancer.git"
},
"author": "Midefos",
"license": "MIT",
"bugs": {
"url": "https://github.com/Midefos/idealista-enhancer/issues"
},
"homepage": "https://github.com/Midefos/idealista-enhancer#readme",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"browserify-banner": "^2.0.4",
"jquery": "^3.6.0"
}
}