fundom.js
Version:
JS library for creating reactive ui elements in declarative way
53 lines (52 loc) • 1.36 kB
JSON
{
"name": "fundom.js",
"version": "0.4.0",
"description": "JS library for creating reactive ui elements in declarative way",
"author": "Andrei Kuzmich",
"repository": {
"type": "git",
"url": "https://github.com/andrew1931/fundom"
},
"license": "MIT",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"browser": "dist/index.iife.js",
"exports": {
"import": "./dist/index.esm.js",
"require": "./dist/index.umd.js"
},
"files": [
"dist"
],
"keywords": [
"reactive",
"functional-programming",
"declarative-ui",
"dom-manipulation"
],
"scripts": {
"build": "npx tsc --emitDeclarationOnly && rollup -c",
"lint": "eslint --ext .ts .",
"format": "prettier --write \"**/*.+(js|ts|json|html|css)\"",
"test": "vitest run"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"eslint": "^9.27.0",
"globals": "^16.2.0",
"jsdom": "^26.1.0",
"prettier": "^3.2.5",
"rollup": "^4.35.0",
"rollup-plugin-dts": "^6.2.1",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.0",
"vitest": "^3.1.4"
},
"volta": {
"node": "20.12.2",
"npm": "10.5.0"
}
}