zextra
Version:
***Zextra*** stands for "Ziko Extra" is an extension package that enhances [ZikoJS](https://github.com/zakarialaoui10/ziko.js) by providing additional utilities and UI elements. It expands ZikoJS with extra features, making it easier to work with custom U
53 lines (46 loc) • 2.01 kB
JSON
{
"name": "zextra",
"version": "0.0.0",
"description": "",
"main": "src/index.js",
"type": "module",
"exports": {
".":"./dist/zextra.mjs",
"./ui":"./dist/zextra-ui.mjs",
"./canvas":"./dist/zextra-canvas.mjs",
"./svg":"./dist/zextra-svg.mjs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev:ui":"cross-env NODE_ENV=development TARGET=ui rollup --config rollup.config.js",
"watch:ui":"cross-env NODE_ENV=development TARGET=ui rollup --config rollup.config.js -w",
"build:ui":"cross-env NODE_ENV=production TARGET=ui rollup --config rollup.config.js",
"dev:canvas":"cross-env NODE_ENV=development TARGET=canvas rollup --config rollup.config.js",
"watch:canvas":"cross-env NODE_ENV=development TARGET=canvas rollup --config rollup.config.js -w",
"build:canvas":"cross-env NODE_ENV=production TARGET=canvas rollup --config rollup.config.js",
"dev:svg":"cross-env NODE_ENV=development TARGET=svg rollup --config rollup.config.js",
"watch:svg":"cross-env NODE_ENV=development TARGET=svg rollup --config rollup.config.js -w",
"build:svg":"cross-env NODE_ENV=production TARGET=svg rollup --config rollup.config.js",
"dev:index":"cross-env NODE_ENV=development TARGET=index rollup --config rollup.config.js",
"watch:index":"cross-env NODE_ENV=development TARGET=index rollup --config rollup.config.js -w",
"build:index":"cross-env NODE_ENV=production TARGET=index rollup --config rollup.config.js",
"dev":"npm run dev:ui & npm run dev:canvas",
"build" : "npm run build:ui & npm run build:canvas"
},
"author": "",
"keywords": [
"zikojs",
"zikojs-addons"
],
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"cross-env": "^7.0.3",
"rollup": "^4.24.0"
},
"dependencies": {
"ziko": "^0.0.24"
}
}