This commit is contained in:
Leifer
2022-10-29 12:15:05 +02:00
parent 1e9574e740
commit 5974f3c9f2
6 changed files with 51 additions and 11 deletions

22
packages/io/package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "io",
"version": "0.0.1",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"io:dev": "NODE_ENV=dev node ./index.js",
"io:rollup": "rollup index.js --config ./rollup-cli.config.js",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"build:io": "npm run format:write && npm run lint:fix && npm run io:rollup"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
}
}