1
0
mirror of https://github.com/jaandrle/deka-dom-el synced 2025-04-02 04:05:52 +02:00
deka-dom-el/package.json
Jan Andrle f2c85ec983
🐛 📺 v0.9.5-alpha (#44)
*  📺 package (version and publint)

* 🔤 docs typos

* 🐛 this address / fixes #43

*  tiny el optimalization

* 🔤 improve docs wording

* 🔤 case-studies/products.js (AbortSignal)

* 🔤 🐛 case-studies/image-gallery.js
2025-03-21 14:43:25 +01:00

111 lines
2.2 KiB
JSON

{
"name": "deka-dom-el",
"version": "0.9.5-alpha",
"description": "A low-code library that simplifies the creation of native DOM elements/components using small wrappers and tweaks.",
"author": "Jan Andrle <andrle.jan@centrum.cz>",
"license": "MIT",
"homepage": "https://github.com/jaandrle/deka-dom-el",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jaandrle/deka-dom-el.git"
},
"bugs": {
"url": "https://github.com/jaandrle/deka-dom-el/issues"
},
"main": "index.js",
"types": "./index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
},
"./signals": {
"types": "./signals.d.ts",
"import": "./signals.js"
},
"./jsdom": {
"types": "./jsdom.d.ts",
"import": "./jsdom.js"
},
"./src/signals-lib": {
"types": "./src/signals-lib/signals-lib.d.ts",
"import": "./src/signals-lib/signals-lib.js"
}
},
"files": [
"*.js",
"*.d.ts",
"src",
"tsconfig.json"
],
"engines": {
"node": ">=18"
},
"jshintConfig": {
"esversion": 11,
"browser": true,
"undef": "true",
"latedef": "true",
"-W014": true,
"maxparams": 5,
"maxdepth": 3,
"maxcomplexity": 14,
"globals": {
"AbortController": false,
"AbortSignal": false,
"FinalizationRegistry": false
}
},
"size-limit": [
{
"path": "./index.js",
"limit": "10 kB",
"gzip": false,
"brotli": false
},
{
"path": "./signals.js",
"limit": "12.2 kB",
"gzip": false,
"brotli": false
},
{
"path": "./index-with-signals.js",
"limit": "14.75 kB",
"gzip": false,
"brotli": false
},
{
"path": "./index-with-signals.js",
"limit": "5.25 kB"
}
],
"modifyEsbuildConfig": {
"platform": "browser"
},
"scripts": {
"test": "echo \"Error: no tests yet\"",
"build": "bs/build.js",
"lint": "bs/lint.sh",
"docs": "bs/docs.js"
},
"keywords": [
"dom",
"javascript",
"low-code",
"typescript"
],
"devDependencies": {
"@size-limit/preset-small-lib": "~11.2",
"dts-bundle-generator": "~9.5",
"editorconfig-checker": "~6.0",
"esbuild": "~0.25",
"jsdom": "~26.0",
"jshint": "~2.13",
"nodejsscript": "^1.0",
"publint": "^0.3",
"size-limit-node-esbuild": "~0.3"
}
}