2
0

♻️ Normalize data

This commit is contained in:
Baptiste Arnaud
2022-01-06 09:40:56 +01:00
parent 6c1e0fd345
commit 9fa4c7dffa
114 changed files with 1545 additions and 1632 deletions

View File

@ -1,13 +1,26 @@
{
"name": "utils",
"version": "1.0.0",
"main": "index.ts",
"license": "AGPL-3.0-or-later",
"private": true,
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"rollup": "^2.63.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"typescript": "^4.5.4"
},
"dependencies": {
"models": "*",
"next": "^12.0.7"
},
"scripts": {
"build": "yarn rollup -c",
"dev": "yarn rollup -c --watch"
}
}