fix loading, minify with rollup

This commit is contained in:
j 2026-02-18 17:02:08 +01:00
commit dd5237e4ed
156 changed files with 794 additions and 971 deletions

19
package.json Normal file
View file

@ -0,0 +1,19 @@
{
"name": "@0x2620/oxjs",
"version": "1.0.0",
"module": "min/Ox.esm.js",
"browser": "min/Ox.js",
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^2.79.2",
"rollup-plugin-copy": "^3.5.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w"
},
"files": [
"min"
]
}