This commit is contained in:
2022-06-06 21:00:10 -05:00
commit 1e94d1a8ed
23 changed files with 1693 additions and 0 deletions

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "browser-scripts-builder",
"version": "1.0.0",
"description": "",
"main": "./lib/main.mjs",
"module": "./lib/main.mjs",
"bin": {
"bsbuild": "./lib/main.js"
},
"scripts": {
"prettier": "prettier --write .",
"build": "npm run prettier && tsc",
"test": "node ./test/test.mjs"
},
"repository": {
"type": "git",
"url": "https://git.zomo.dev/zomo/browser-scripts-builder"
},
"author": "",
"license": "ISC",
"dependencies": {
"esbuild": "^0.14.42"
},
"devDependencies": {
"@types/node": "^17.0.40",
"eslint": "^8.17.0",
"prettier": "^2.6.2"
}
}