@aegisjsproject/core
Version:
A fast, secure, modern, light-weight, and simple JS library for creating web components and more!
110 lines (109 loc) • 3.04 kB
JSON
{
"name": "@aegisjsproject/core",
"version": "0.2.22",
"description": "A fast, secure, modern, light-weight, and simple JS library for creating web components and more!",
"keywords": [
"aegis",
"dom",
"html",
"css",
"theming",
"secure",
"sanitizer-api",
"html-templates",
"constructable-stylesheets",
"custom-elements",
"web-components",
"component-library"
],
"type": "module",
"main": "./core.cjs",
"module": "./core.js",
"unpkg": "./core.js",
"exports": {
".": {
"import": "./core.js",
"require": "./core.cjs"
},
"./*.js": {
"import": "./*.js",
"require": "./*.cjs"
},
"./*.mjs": {
"import": "./*.js",
"require": "./*.cjs"
},
"./*.cjs": {
"import": "./*.js",
"require": "./*.cjs"
},
"./*": {
"import": "./*.js",
"require": "./*.cjs"
}
},
"engines": {
"node": ">=18.0.0"
},
"private": false,
"config": {
"serve": {
"domain": "localhost",
"path": "./",
"port": 8080
}
},
"scripts": {
"test": "npm run lint:js && npm run build",
"start": "http-server ${npm_package_config_serve_path} -c-1 --port ${npm_package_config_serve_port} --gzip true --brotli true -a ${npm_package_config_serve_domain} -o /test/",
"preversion": "npm test",
"prepare": "npm run build",
"lint:js": "eslint .",
"fix:js": "eslint . --fix",
"build": "npm run build:js",
"clean": "rm -f *.cjs",
"build:js": "npm run clean && rollup -c rollup.config.js",
"create:lock": "npm i --package-lock-only --ignore-scripts --no-audit --no-fund",
"version:bump": "npm run version:bump:patch",
"version:bump:patch": "npm version --no-git-tag-version patch && npm run create:lock",
"version:bump:minor": "npm version --no-git-tag-version minor && npm run create:lock",
"version:bump:major": "npm version --no-git-tag-version major && npm run create:lock"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AegisJSProject/core.git"
},
"author": "Chris Zuber <admin@kernvalley.us>",
"license": "MIT",
"funding": [
{
"type": "librepay",
"url": "https://liberapay.com/shgysk8zer0"
},
{
"type": "github",
"url": "https://github.com/sponsors/shgysk8zer0"
}
],
"bugs": {
"url": "https://github.com/AegisJSProject/core/issues"
},
"homepage": "https://github.com/AegisJSProject/core#readme",
"devDependencies": {
"@aegisjsproject/component": "^0.1.3",
"@aegisjsproject/styles": "^0.2.4",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@shgysk8zer0/eslint-config": "^1.0.1",
"eslint": "^9.0.0",
"http-server": "^14.1.1",
"rollup": "^4.9.6"
},
"dependencies": {
"@aegisjsproject/callback-registry": "^1.0.2",
"@aegisjsproject/parsers": "^0.0.16",
"@aegisjsproject/router": "^1.1.3",
"@aegisjsproject/state": "^1.0.5",
"@aegisjsproject/url": "^1.0.1"
}
}