@jadis/core
Version:
Jadis is a minimal JavaScript library for building web interfaces using native Web Components.
78 lines (77 loc) • 2.06 kB
JSON
{
"author": "Leal Bioley <lb@syware.ch>",
"bugs": {
"url": "https://github.com/bioleyl/jadis/issues"
},
"description": "Jadis is a minimal JavaScript library for building web interfaces using native Web Components.",
"devDependencies": {
"@rollup/plugin-commonjs": "29.0.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-typescript": "12.3.0",
"@types/jest": "30.0.0",
"@vitest/coverage-v8": "4.0.15",
"@vitest/ui": "4.0.15",
"c8": "10.1.3",
"jest": "30.2.0",
"jsdom": "27.2.0",
"rimraf": "6.1.2",
"rollup": "4.53.3",
"rollup-plugin-delete": "3.0.1",
"rollup-plugin-dts": "6.3.0",
"ts-jest": "29.4.6",
"tslib": "2.8.1",
"typescript": "5.9.3",
"vitest": "4.0.15"
},
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"files": ["dist"],
"homepage": "https://bioleyl.github.io/jadis/",
"keywords": [
"jadis",
"web components",
"custom elements",
"frontend",
"native",
"javascript",
"typescript",
"no framework",
"vanilla js",
"lightweight",
"minimal",
"no virtual dom",
"no reactivity",
"simple ui",
"frontend toolkit",
"browser native",
"anti-framework",
"html templates",
"declarative",
"nostalgia"
],
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"name": "@jadis/core",
"repository": {
"type": "git",
"url": "https://github.com/bioleyl/jadis.git"
},
"scripts": {
"build": "npm run build:types && npm run build:bundle",
"build:bundle": "rollup -c",
"build:types": "tsc --emitDeclarationOnly --removeComments false --outDir dist/dts",
"clean": "rimraf dist && rimraf build",
"prepack": "npm run clean && npm run build",
"test": "vitest",
"test:coverage": "vitest run --coverage --reporter=html"
},
"type": "module",
"types": "./dist/types/index.d.ts",
"version": "0.10.0"
}