2023-09-05 09:25:47 +02:00
|
|
|
{
|
|
|
|
"name": "deka-dom-el",
|
2023-11-21 17:19:59 +01:00
|
|
|
"version": "0.7.1",
|
2023-09-05 09:25:47 +02:00
|
|
|
"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",
|
2023-10-16 13:03:27 +02:00
|
|
|
"homepage": "https://github.com/jaandrle/deka-dom-el",
|
2023-09-05 09:25:47 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2023-10-16 13:03:27 +02:00
|
|
|
"url": "git@github.com:jaandrle/deka-dom-el.git"
|
2023-09-05 09:25:47 +02:00
|
|
|
},
|
|
|
|
"bugs": {
|
2023-10-16 13:03:27 +02:00
|
|
|
"url": "https://github.com/jaandrle/deka-dom-el/issues"
|
2023-09-05 09:25:47 +02:00
|
|
|
},
|
|
|
|
"main": "index.js",
|
|
|
|
"types": "./index.d.ts",
|
2023-09-05 09:57:54 +02:00
|
|
|
"type": "module",
|
2023-09-05 09:25:47 +02:00
|
|
|
"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
|
|
|
},
|
2023-09-05 09:25:47 +02:00
|
|
|
"./signals": {
|
2023-09-13 21:06:13 +02:00
|
|
|
"import": "./signals.js",
|
|
|
|
"types": "./signals.d.ts"
|
2023-09-05 09:25:47 +02:00
|
|
|
},
|
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"
|
2023-09-05 09:25:47 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"files": [
|
2023-09-13 21:06:13 +02:00
|
|
|
"*.js",
|
|
|
|
"*.d.ts",
|
2023-09-05 09:25:47 +02:00
|
|
|
"src"
|
|
|
|
],
|
|
|
|
"engines": {
|
|
|
|
"node": ">=18"
|
|
|
|
},
|
|
|
|
"jshintConfig": {
|
2023-09-07 13:52:09 +02:00
|
|
|
"esversion": 11,
|
|
|
|
"browser": true,
|
2023-09-05 09:25:47 +02:00
|
|
|
"undef": "true",
|
|
|
|
"latedef": "true",
|
2023-09-07 13:52:09 +02:00
|
|
|
"maxparams": 5,
|
2023-09-05 09:25:47 +02:00
|
|
|
"maxdepth": 3,
|
2023-11-06 19:29:54 +01:00
|
|
|
"maxcomplexity": 14,
|
2023-09-07 13:52:09 +02:00
|
|
|
"globals": {
|
2023-09-09 21:15:43 +02:00
|
|
|
"requestIdleCallback": false,
|
2023-10-13 16:37:04 +02:00
|
|
|
"AbortController": false,
|
2023-09-09 21:15:43 +02:00
|
|
|
"AbortSignal": false
|
2023-09-07 13:52:09 +02:00
|
|
|
}
|
2023-09-05 09:25:47 +02:00
|
|
|
},
|
|
|
|
"size-limit": [
|
|
|
|
{
|
|
|
|
"path": "./index.js",
|
2023-11-24 16:16:08 +01:00
|
|
|
"limit": "9 kB",
|
2023-09-05 09:25:47 +02:00
|
|
|
"gzip": false
|
|
|
|
},
|
|
|
|
{
|
2023-09-13 21:37:00 +02:00
|
|
|
"path": "./signals.js",
|
2023-11-10 18:02:56 +01:00
|
|
|
"limit": "11.5 kB",
|
2023-09-13 13:20:00 +02:00
|
|
|
"gzip": false
|
|
|
|
},
|
|
|
|
{
|
2023-09-13 21:37:00 +02:00
|
|
|
"path": "./jsdom.js",
|
2023-10-13 16:37:04 +02:00
|
|
|
"limit": "10 kB",
|
2023-09-13 13:20:00 +02:00
|
|
|
"gzip": false
|
|
|
|
},
|
|
|
|
{
|
2023-10-09 13:49:38 +02:00
|
|
|
"path": "./examples/components/webComponent.js",
|
2023-11-10 18:02:56 +01:00
|
|
|
"limit": "13 kB",
|
2023-09-05 09:25:47 +02:00
|
|
|
"gzip": false
|
2023-11-08 19:09:39 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./examples/components/webComponent.js",
|
|
|
|
"limit": "5 kB",
|
|
|
|
"gzip": true
|
2023-09-05 09:25:47 +02:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"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",
|
2023-10-19 15:01:54 +02:00
|
|
|
"dts-bundler": "^0.1.0",
|
2023-09-05 09:25:47 +02:00
|
|
|
"esbuild": "^0.19.2",
|
2023-09-26 16:02:10 +02:00
|
|
|
"jsdom": "^22.1.0",
|
2023-09-07 13:52:09 +02:00
|
|
|
"jshint": "^2.13.6",
|
2023-09-05 09:25:47 +02:00
|
|
|
"nodejsscript": "github:jaandrle/nodejsscript#dev-v1",
|
|
|
|
"size-limit-node-esbuild": "^0.2.0"
|
|
|
|
}
|
|
|
|
}
|