🚀 Init bot-engine

This commit is contained in:
Baptiste Arnaud
2021-12-08 09:33:25 +01:00
parent 641ba3db8a
commit 9dbad1dbab
16 changed files with 1943 additions and 9 deletions

View File

@@ -0,0 +1,28 @@
{
"name": "bot-engine",
"packageManager": "yarn@3.1.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/react": "^17.0.37",
"npm-run-all": "^4.1.5",
"react": "^17.0.2",
"rollup": "^2.60.2",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-postcss": "^4.0.2",
"tailwindcss": "^2.2.19",
"typescript": "^4.5.2"
},
"scripts": {
"build": "run-s tailwind:generate rollup",
"tailwind:generate": "tailwindcss -o src/style.css",
"rollup": "rollup -c"
}
}