1
0
mirror of https://github.com/jaandrle/deka-dom-el synced 2024-11-22 07:49:38 +01:00
deka-dom-el/package.json

99 lines
1.9 KiB
JSON
Raw Normal View History

{
"name": "deka-dom-el",
"version": "0.3.0",
"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://gitea.jaandrle.cz/jaandrle/deka-dom-el",
"repository": {
"type": "git",
"url": "git@jaandrle.cz:jaandrle/deka-dom-el.git"
},
"bugs": {
"url": "https://gitea.jaandrle.cz/jaandrle/deka-dom-el/issues"
},
"main": "index.js",
"types": "./index.d.ts",
"type": "module",
"exports": {
2023-09-13 21:37:00 +02:00
".": {
"import": "./index.js",
"types": "./index.d.ts"
},
2023-09-05 11:01:29 +02:00
"./jsdom": {
2023-09-13 21:06:13 +02:00
"import": "./jsdom.js",
"types": "./jsdom.d.ts"
2023-09-05 11:01:29 +02:00
},
"./signals": {
2023-09-13 21:06:13 +02:00
"import": "./signals.js",
"types": "./signals.d.ts"
},
2023-09-13 21:37:00 +02:00
"./src/signals-lib": {
2023-09-05 12:49:37 +02:00
"import": "./src/signals-lib.js",
"types": "./src/signals.d.ts"
}
},
"files": [
2023-09-13 21:06:13 +02:00
"*.js",
"*.d.ts",
"src"
],
"engines": {
"node": ">=18"
},
"jshintConfig": {
"esversion": 11,
"browser": true,
"undef": "true",
"latedef": "true",
"maxparams": 5,
"maxdepth": 3,
"maxcomplexity": 10,
"globals": {
"requestIdleCallback": false,
"AbortSignal": false
}
},
"size-limit": [
{
"path": "./index.js",
2023-09-13 13:20:00 +02:00
"limit": "7 kB",
"gzip": false
},
{
2023-09-13 21:37:00 +02:00
"path": "./signals.js",
2023-09-13 13:20:00 +02:00
"limit": "4 kB",
"gzip": false
},
{
2023-09-13 21:37:00 +02:00
"path": "./jsdom.js",
2023-09-13 13:20:00 +02:00
"limit": "8 kB",
"gzip": false
},
{
"path": "./test/components/webComponent.js",
"limit": "10kb",
"gzip": false
}
],
"modifyEsbuildConfig": {
"platform": "browser"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"dom",
"javascript",
"low-code",
"typescript"
],
"devDependencies": {
"@size-limit/preset-small-lib": "^8.2.6",
"esbuild": "^0.19.2",
"jshint": "^2.13.6",
"nodejsscript": "github:jaandrle/nodejsscript#dev-v1",
"size-limit-node-esbuild": "^0.2.0"
}
}